Add:
- app/(application)/(admin)/

## No Issue
This commit is contained in:
2025-08-05 12:11:25 +08:00
parent e16b0c2fce
commit 48c34aa26c
8 changed files with 91 additions and 9 deletions

View File

@@ -26,9 +26,14 @@ export default function Profile_MenuDrawerSection({
<>
{/* Menu Items */}
<MenuDrawerDynamicGrid
data={drawerItems}
data={drawerItems.map((item) => ({
icon: item.icon,
label: item.label,
path: item.path as any,
color: item.color,
}))}
columns={4} // Ubah ke 2 jika ingin 2 kolom per baris
onPressItem={handlePress}
onPressItem={(item) => handlePress(item as any)}
/>
</>
);