feat: work on displaying more complex doc structure

This commit is contained in:
Stevan Freeborn
2023-04-11 15:52:48 -05:00
parent 7739cf2958
commit 68d6dd5f59
8 changed files with 82 additions and 11 deletions
+21
View File
@@ -17,5 +17,26 @@ export const versionTwo: DocsStructure = {
example: 'example.md',
children: [],
},
{
title: 'Resources',
folder: 'resources',
children: [
{
title: 'Records',
folder: 'resources/records',
copy: 'copy.md',
example: 'example.md',
children: [
{
title: 'Get Records by App',
folder:
'resources/records/get_records_by_app',
copy: 'copy.md',
example: 'example.md',
},
],
},
],
},
],
};