Created
March 31, 2020 08:08
-
-
Save manakuro/d49f5ccc5a88bbee9c78ad6a1f70f837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const todos = [ | |
{ | |
code: 'code', | |
name: 'name', | |
list: [ | |
{ | |
name: 'todo name', | |
}, | |
{ | |
name: 'todo name', | |
}, | |
], | |
todo2: [ | |
{ | |
code2: 'code2', | |
name2: 'name2', | |
list: [ | |
{ | |
name: 'todo name2', | |
description: '', | |
}, | |
{ | |
name: 'todo name2', | |
description: '', | |
} | |
], | |
todo3: [ | |
{ | |
code3: 'code3', | |
name3: 'name3', | |
list: [ | |
{ | |
name: 'todo name3', | |
description: '', | |
}, | |
{ | |
name: 'todo name3', | |
description: '', | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment