This commit is contained in:
Dede Fuji Abdul
2023-10-26 08:33:38 +07:00
parent 700bf84922
commit fcd3d2f91a
21 changed files with 2334 additions and 277 deletions

11
src/types/menu.ts Normal file
View File

@ -0,0 +1,11 @@
interface MenuItemModel {
name: string;
path: string;
icon: any;
expanded: boolean;
children: MenuItemModel[];
}
export type {
MenuItemModel,
}