12345678910111213141516171819202122232425262728293031323334353637 |
- module.exports = {
- notes: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type:'doc',
- id:'TOC',
- },
- {
- type: 'category',
- label: 'Projects',
- collapsible: false,
- items: [
- 'projects/zw',
- 'projects/dw',
- 'projects/gzet',
- 'projects/juryd',
- 'projects/pants',
- 'projects/ham'
- ],
- },
- {
- type: 'category',
- label: 'Space',
- items: [
- ],
- },
- {
- type: 'category',
- label: 'Time',
- items: [
- ],
- },
- ],
- };
|