Adds notes to mobile menu

This commit is contained in:
2026-05-01 18:26:19 -07:00
parent 9af10f938e
commit 5535a30873
5 changed files with 60 additions and 11 deletions

View File

@@ -3,7 +3,7 @@ export interface HierarchyNode {
title: string | null;
children: Hierarchy | null;
}
type Hierarchy = Record<string, HierarchyNode>;
export type Hierarchy = Record<string, HierarchyNode>;
function addToHierarchy(
tree: Hierarchy,