mirror of
https://github.com/noodlapp/noodl-docs.git
synced 2026-01-10 14:22:52 +01:00
31 lines
596 B
JavaScript
31 lines
596 B
JavaScript
// My Prefab Sidebar
|
|
MyPrefabSidebar: [
|
|
{
|
|
type: 'doc',
|
|
label: 'Overview',
|
|
id: 'prefabs/my-prefab/README',
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Components',
|
|
collapsible: false,
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
label: 'Setup My Prefab',
|
|
id: 'prefabs/my-prefab/components/setup-my-prefab/README',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Request',
|
|
id: 'prefabs/my-prefab/components/my-prefab-request/README',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Back to prefabs',
|
|
href: '/library/prefabs/overview',
|
|
},
|
|
];
|