diff --git a/App/FeatureSet/Docs/Utils/Nav.ts b/App/FeatureSet/Docs/Utils/Nav.ts index 325c24b761..7a13a350d1 100644 --- a/App/FeatureSet/Docs/Utils/Nav.ts +++ b/App/FeatureSet/Docs/Utils/Nav.ts @@ -3,11 +3,13 @@ export interface NavLink { url: string; } +// Define an interface for a navigation group export interface NavGroup { title: string; links: NavLink[]; } +// Define an array of navigation groups const DocsNav: NavGroup[] = [ { title: "Introduction", @@ -72,4 +74,5 @@ const DocsNav: NavGroup[] = [ }, ]; -export default DocsNav; +// Export the array of navigation groups +export default DocsNav; \ No newline at end of file