list of coupons

This commit is contained in:
hamid zarghami
2025-12-06 14:52:49 +03:30
parent 14b0e112a2
commit f397560312
10 changed files with 343 additions and 2 deletions
+3
View File
@@ -33,6 +33,7 @@ import UpdateAdmin from '@/pages/admin/Update'
import ShipmentMethodList from '@/pages/shipmentMethod/List'
import CreateShipmentMethod from '@/pages/shipmentMethod/Create'
import UpdateShipmentMethod from '@/pages/shipmentMethod/Update'
import CouponsList from '@/pages/coupon/List'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -80,6 +81,8 @@ 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 />} />
<Route path={Pages.coupons.list} element={<CouponsList />} />
</Routes>
</div>
</div>