Skip to content

Instantly share code, notes, and snippets.

@DmitryMarkov
Created January 20, 2019 11:56
Show Gist options
  • Save DmitryMarkov/974d1d6855bdb8fcd56510a07adf7596 to your computer and use it in GitHub Desktop.
Save DmitryMarkov/974d1d6855bdb8fcd56510a07adf7596 to your computer and use it in GitHub Desktop.
Folders example
const folders = [{
id: 1,
name: 'JavaScript',
children: [{
id: 2,
name: 'Frameworks',
children: [{
id: 3,
name: 'Angular'
}, {
id: 4,
name: 'Vue'
}]
}, {
id: 5,
name: 'Libraries',
children: [{
id: 6,
name: 'React'
}]
}]
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment