feat: add cron cheatsheet.

This commit is contained in:
jaywcjlove
2022-09-26 22:14:52 +08:00
parent 697d00f277
commit 089b1eaf39
8 changed files with 226 additions and 72 deletions

View File

@ -0,0 +1,22 @@
export function footer() {
return {
type: 'element',
tagName: 'footer',
properties: {
class: 'footer-warp',
},
children: [
{
type: 'element',
tagName: 'footer',
properties: {
class: ['max-container'],
},
children: [
{ type: 'text', value: '© 2022 Kenny Wang, All rights reserved.' }
],
}
],
};
}