update menu

This commit is contained in:
Dede Fuji Abdul
2023-10-17 16:48:44 +07:00
parent fc37eab5db
commit cce938fa8f
17 changed files with 755 additions and 334 deletions

8
src/utils/interfaces.ts Normal file
View File

@ -0,0 +1,8 @@
interface MenuItemModel {
name: string;
href: string;
icon: any;
children: MenuItemModel[];
}
export type { MenuItemModel }