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: 'ui' },
{
title: "Alert",
icon: AlertCircleIcon,
to: "/ui-components/alerts",
},
{
title: "Button",
icon: CircleDotIcon,
to: "/ui-components/buttons",
},
]