{/* ========================= */}
{/* SCROLLABLE AREA */}
{/* ========================= */}
{/* HEADER */}

{open && (
)}
{/* ========================= */}
{/* MENU SECTION */}
{/* ========================= */}
{sidebarSections.map((section, sectionIndex) => (
{open && section.title && (
{section.title}
)}
{section.items?.map((item: any) => {
// =============================
// ITEM WITH CHILDREN (ACCORDION)
// =============================
if (item.children) {
const isExpanded = openMenus.includes(item.title);
return (
toggleMenu(item.title)}
className="cursor-pointer"
>
{open && (
)}
{open && isExpanded && (
{item.children?.map((child: any) => (
))}
)}
);
}
return (
);
})}
))}
{/* ========================= */}
{/* BOTTOM SECTION */}
{/* ========================= */}
{/* THEME TOGGLE */}
{/* SETTINGS */}
);
};