update shipment

This commit is contained in:
hamid zarghami
2025-11-25 09:24:03 +03:30
parent d77e83c08d
commit 2f6a339cee
6 changed files with 213 additions and 5 deletions
+2
View File
@@ -32,6 +32,7 @@ import CreateAdmin from '@/pages/admin/Create'
import UpdateAdmin from '@/pages/admin/Update'
import ShipmentMethodList from '@/pages/shipmentMethod/List'
import CreateShipmentMethod from '@/pages/shipmentMethod/Create'
import UpdateShipmentMethod from '@/pages/shipmentMethod/Update'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -78,6 +79,7 @@ const MainRouter: FC = () => {
<Route path={Pages.shipment_methods.list} element={<ShipmentMethodList />} />
<Route path={Pages.shipment_methods.add} element={<CreateShipmentMethod />} />
<Route path={Pages.shipment_methods.update + ':id'} element={<UpdateShipmentMethod />} />
</Routes>
</div>
</div>