Routing
1. How to add page to verticle sidebar ?
// ----------------------------------------------------
// File: components/lc/full/vertical-sidebar/sidebarItem.ts
// ----------------------------------------------------
const sidebarItem: menu[] = [
{ header: 'Home' },
{
title: 'Modern',
icon: ApertureIcon,
chip: 'New',
chipColor: 'surface',
chipBgColor: 'secondary',
to: '/dashboards/modern'
},
]
2. How to add page to horizontal sidebar ?
// ------------------------------------------------------------
// File: components/lc/full/horizontal-sidebar/horizontalItems.ts
// ------------------------------------------------------------
const sidebarItem: menu[] = [
{
title: 'Dashboard',
icon: HomeIcon,
to: '#',
children: [
{
title: 'Modern',
icon: CircleIcon,
to: '/dashboards/modern'
}
]
}
]