sidebarslists.js 735 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. module.exports = {
  2. lists: [
  3. {
  4. type:'doc',
  5. id: 'index',
  6. },
  7. {
  8. type: 'category',
  9. label: 'Next',
  10. items: [
  11. 'next'
  12. ],
  13. },
  14. {
  15. type: 'category',
  16. label: 'Art',
  17. items: [
  18. 'art',
  19. 'lit',
  20. 'film',
  21. 'music'
  22. ],
  23. },
  24. {
  25. type: 'category',
  26. label: 'Places',
  27. items: [
  28. 'places'
  29. ],
  30. },
  31. {
  32. type: 'category',
  33. label: 'People',
  34. items: [
  35. 'people'
  36. ],
  37. },
  38. {
  39. type: 'category',
  40. label: 'Things',
  41. items: [
  42. 'things'
  43. ],
  44. },
  45. {
  46. type: 'category',
  47. label: 'Other Lists',
  48. items: [
  49. 'lists'
  50. ],
  51. },
  52. ],
  53. };