create feature

This commit is contained in:
hamid zarghami
2025-10-21 11:36:16 +03:30
parent 75ef90802f
commit 1351fbd792
3 changed files with 71 additions and 3 deletions
+3 -2
View File
@@ -8,9 +8,9 @@ import ProformaInvoice from '@/pages/invoice/ProformaInvoice'
import RequestList from '@/pages/requests/RequestList'
import ProductList from '@/pages/product/List'
import OrdersList from '@/pages/order/List'
import FeaturesList from '@/pages/Features/List'
import FeaturesList from '@/pages/features/List'
import CreateProduct from '@/pages/product/Create'
import CreateFeature from '@/pages/features/Create'
const MainRouter: FC = () => {
return (
<div className='p-4 overflow-hidden'>
@@ -30,6 +30,7 @@ const MainRouter: FC = () => {
<Route path={Paths.product.create} element={<CreateProduct />} />
<Route path={Paths.order.list} element={<OrdersList />} />
<Route path={Paths.features.list} element={<FeaturesList />} />
<Route path={Paths.features.create} element={<CreateFeature />} />
</Routes>
</div>
</div>