Feat: Write docs for prefab contributions

This commit is contained in:
kotte
2023-12-12 13:52:28 +01:00
parent 379ed363f4
commit 0a6093005c
15 changed files with 296 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
// 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',
},
];