feat: work on displaying doc structure in sidebar

This commit is contained in:
Stevan Freeborn
2023-04-09 00:24:42 -05:00
parent 52416307ee
commit 34e1c68a2f
12 changed files with 220 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
export type DocsStructure = {
title: string;
folder: string;
copy?: string;
example?: string;
children?: DocsStructure[];
};