Routing
How to add page to sidebar ?
// ----------------------------------------------------
// File: /components/layout/full/vertical-sidebar/sidebarItem.ts
// ----------------------------------------------------
const sidebarItem: menu[] = [
{ header: 'Home' },
{
title: 'Dashboard',
icon: LayoutDashboardIcon,
to: '/'
},
{ header: 'utilities' },
{
title: 'Typography',
icon: TypographyIcon,
to: '/ui/typography'
},
{
title: 'Shadow',
icon: CopyIcon,
to: '/ui/shadow'
},
]