Merge pull request #1555 from OneUptime/oneuptime-app-oneuptime-app-improve-comments-OeXvG

[OneUptime Copilot] Improve Comments on /App/FeatureSet/Docs/Utils/Nav.ts
This commit is contained in:
Simon Larsen 2024-07-09 12:34:24 +01:00 committed by GitHub
commit e9a2c64d67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 the array of navigation groups
export default DocsNav;