12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- module.exports = {
- lists: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type: 'doc',
- id: 'next',
- },
- {
- type: 'category',
- label: 'Art',
- collapsible: false,
- items: [
- 'art',
- 'lit',
- 'film',
- 'music'
- ],
- },
- {
- type: 'doc',
- id: 'concepts',
- },
- {
- type: 'doc',
- id: 'places',
- },
- {
- type: 'doc',
- id: 'people',
- },
- {
- type: 'doc',
- id: 'things',
- },
- {
- type: 'doc',
- id: 'trivia',
- },
- {
- type: 'doc',
- id: 'quotes',
- },
- {
- type: 'doc',
- id: 'words',
- },
- {
- type: 'doc',
- id: 'lists',
- },
- ],
- };
|