12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- module.exports = {
- lists: [
- {
- type:'doc',
- id: 'index',
- },
- {
- 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'
- ],
- },
- ],
- };
|