feat: adding clients crud

This commit is contained in:
Rodolfo Ruiz
2025-06-12 08:02:43 -06:00
parent f4d7f86d1b
commit 86d0d56e38
9 changed files with 290 additions and 65 deletions

View File

@@ -21,10 +21,10 @@ export default function MenuDrawer({ zone = 'public', open, onClose, onSelect })
}}>
<List sx={{ width: isMobile ? '100vw' : 250, marginTop: 14 }}>
{items.map((text, index) => (
<ListItem key={index} onClick={() => {
onClose(); // Close drawer
onSelect?.(text); // Notify parent of selected item
}}>
<ListItem key={index} onClick={() => {
onClose(); // Close drawer
onSelect?.(text); // Notify parent of selected item
}}>
<ListItemText
primary={text}
slotProps={{