feat(country-province-city): add, edit functionality

This commit is contained in:
ghazall-ag
2025-11-17 00:40:53 +03:30
parent 77cc7534a0
commit 7cc442b600
20 changed files with 2008 additions and 280 deletions

View File

@@ -7,7 +7,9 @@ import {
Menu,
X,
Users,
Shield
Shield,
DollarSign,
MapPin
} from 'lucide-react';
const Sidebar = ({ isOpen, onToggle }) => {
@@ -16,6 +18,8 @@ const Sidebar = ({ isOpen, onToggle }) => {
{ name: 'Transactions', href: '/transactions', icon: CreditCard },
{ name: 'Roles', href: '/roles', icon: Shield },
{ name: 'Users', href: '/users', icon: Users },
{ name: 'Currency', href: '/currency', icon: DollarSign },
{ name: 'Location', href: '/location', icon: MapPin },
{ name: 'Settings', href: '/settings', icon: Settings },
];