create discount

This commit is contained in:
hamid zarghami
2025-09-27 11:51:05 +03:30
parent ee89008a9f
commit 0fa7fbf99b
13 changed files with 712 additions and 25 deletions
+5
View File
@@ -29,6 +29,8 @@ import CreateBlog from '@/pages/blogs/Create'
import UpdateBlog from '@/pages/blogs/Update'
import ShippingList from '@/pages/shipment/List'
import CreateShipment from '@/pages/shipment/Create'
import CouponList from '@/pages/Coupon/List'
import CreateCoupon from '@/pages/Coupon/Create'
const MainRouter: FC = () => {
@@ -77,6 +79,9 @@ const MainRouter: FC = () => {
<Route path={Pages.shipment.list} element={<ShippingList />} />
<Route path={Pages.shipment.create} element={<CreateShipment />} />
<Route path={Pages.coupon.list} element={<CouponList />} />
<Route path={Pages.coupon.create} element={<CreateCoupon />} />
</Routes>
</div>
</div>