tambahannnya

This commit is contained in:
bipproduction
2025-02-15 21:56:18 +08:00
parent 00355814bc
commit 2115af8126
84 changed files with 2189 additions and 320 deletions

6
types/menu-item.ts Normal file
View File

@@ -0,0 +1,6 @@
export type MenuItem = {
id: string,
name: string,
href: string,
children?: MenuItem[]
}