create shipment method

This commit is contained in:
hamid zarghami
2025-11-23 15:56:09 +03:30
parent 255a07df06
commit 45122f4d7a
5 changed files with 202 additions and 2 deletions
+2
View File
@@ -31,6 +31,7 @@ import AdminList from '@/pages/admin/List'
import CreateAdmin from '@/pages/admin/Create'
import UpdateAdmin from '@/pages/admin/Update'
import ShipmentMethodList from '@/pages/shipmentMethod/List'
import CreateShipmentMethod from '@/pages/shipmentMethod/Create'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -76,6 +77,7 @@ const MainRouter: FC = () => {
<Route path={Pages.admins.update + ':id'} element={<UpdateAdmin />} />
<Route path={Pages.shipment_methods.list} element={<ShipmentMethodList />} />
<Route path={Pages.shipment_methods.add} element={<CreateShipmentMethod />} />
</Routes>
</div>
</div>