1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- module.exports = {
- lists: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type: 'category',
- label: 'Next',
- items: [
- 'next'
- ],
- },
- {
- type: 'category',
- label: 'Art',
- items: [
- 'art',
- 'lit',
- 'film',
- 'music'
- ],
- },
- {
- type: 'category',
- label: 'Places',
- items: [
- 'places'
- ],
- },
- {
- type: 'category',
- label: 'People',
- items: [
- 'people'
- ],
- },
- {
- type: 'category',
- label: 'Things',
- items: [
- 'things'
- ],
- },
- {
- type: 'category',
- label: 'Other Lists',
- items: [
- 'lists'
- ],
- },
- ],
- };
|