chore(FE-40): create main drawer menu type

This commit is contained in:
ValdiANS
2025-10-09 09:55:14 +07:00
parent 1d7f100507
commit f8f5e8403a
+9 -2
View File
@@ -1,4 +1,11 @@
export const MAIN_DRAWER_LINKS = [
type MAIN_DRAWER_MENU = {
title: string;
link: string;
icon: string;
submenu?: MAIN_DRAWER_MENU[];
};
export const MAIN_DRAWER_LINKS: MAIN_DRAWER_MENU[] = [
{
title: 'Dashboard',
link: '/dashboard',
@@ -62,7 +69,7 @@ export const MAIN_DRAWER_LINKS = [
},
{
title: 'FCR',
link: '/master-data/FCR',
link: '/master-data/fcr',
icon: 'fluent:food-chicken-leg-16-regular',
},
{