Files
revenue-fe/src/config/menu.config.tsx
fro1991 13a2c4d42c update
2025-02-01 19:49:27 +07:00

33 lines
505 B
TypeScript

import { type TMenuConfig } from '@/components/menu';
export const MENU_SIDEBAR: TMenuConfig = [
{
title: '',
children: [
{
title: 'Dashboard',
path: '/'
}
]
},
{
title: 'Account',
children: [
{
title: 'User Profile',
path: '/account/home/user-profile'
}
]
}
];
export const MENU_ROOT: TMenuConfig = [
{
title: 'Dashboard',
icon: 'setting-2',
rootPath: '/',
path: '/',
childrenIndex: 0
}
];