Routing
How to add page to sidebar ?
// ----------------------------------------------------
// File: /src/app/(DashboardLayout)/layout/sidebar/MenuItems.tsx
// ----------------------------------------------------
const Menuitems = [
{
navlabel: true,
subheader: "Home",
},
{
id: uniqueId(),
title: "Dashboard",
icon: IconLayoutDashboard,
href: "/",
},
]
export default Menuitems;