Files
desa-darmasaba/types/menu-item.ts
bipproduction 2115af8126 tambahannnya
2025-02-15 21:56:18 +08:00

6 lines
104 B
TypeScript

export type MenuItem = {
id: string,
name: string,
href: string,
children?: MenuItem[]
}