39 lines
813 B
TypeScript
39 lines
813 B
TypeScript
import DashboardIcon from '@mui/icons-material/Dashboard';
|
|
import PersonIcon from '@mui/icons-material/Person';
|
|
import { MenuItemType } from './types/sidebar';
|
|
import ReceiptLongIcon from '@mui/icons-material/ReceiptLong';
|
|
|
|
const Menuitems: MenuItemType[] = [
|
|
{
|
|
navlabel: true,
|
|
subheader: 'Home',
|
|
},
|
|
{
|
|
id: '1',
|
|
title: 'Dashboard',
|
|
icon: DashboardIcon as any,
|
|
href: '/dashboard',
|
|
path: '/dashboard',
|
|
},
|
|
{
|
|
id: '2',
|
|
title: 'Perfil',
|
|
icon: PersonIcon as any,
|
|
href: '/dashboard/profile',
|
|
path: '/dashboard/profile',
|
|
},
|
|
{
|
|
navlabel: true,
|
|
subheader: 'Comercial',
|
|
},
|
|
{
|
|
id: '3',
|
|
title: 'Consulta de Pedidos',
|
|
icon: ReceiptLongIcon as any,
|
|
href: '/dashboard/orders',
|
|
path: '/dashboard/orders',
|
|
},
|
|
];
|
|
|
|
export default Menuitems;
|