update shipment

This commit is contained in:
hamid zarghami
2025-09-29 11:47:35 +03:30
parent 53859d4bbb
commit 25148282ae
5 changed files with 313 additions and 1 deletions
+2
View File
@@ -38,6 +38,7 @@ import AdminCreate from '@/pages/admin/Create'
import UpdateBrand from '@/pages/brand/Update'
import UpdateWarranty from '@/pages/warranty/Update'
import PaymentList from '@/pages/payment/List'
import UpdateShipment from '@/pages/shipment/Update'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -86,6 +87,7 @@ const MainRouter: FC = () => {
<Route path={Pages.shipment.list} element={<ShippingList />} />
<Route path={Pages.shipment.create} element={<CreateShipment />} />
<Route path={`${Pages.shipment.update}:id`} element={<UpdateShipment />} />
<Route path={Pages.coupon.list} element={<CouponList />} />
<Route path={Pages.coupon.create} element={<CreateCoupon />} />