list of attributes

This commit is contained in:
hamid zarghami
2026-01-25 09:55:45 +03:30
parent a37a7191dd
commit f8f79e3a9d
5 changed files with 107 additions and 2 deletions
+2
View File
@@ -30,6 +30,7 @@ import CreateCategory from '@/pages/product/category/Create'
import UpdateCategory from '@/pages/product/category/Update'
import UpdateProduct from '@/pages/product/Update'
import CreateAttribute from '@/pages/product/attribute/Create'
import AttributeList from '@/pages/product/attribute/List'
const MainRouter: FC = () => {
return (
@@ -51,6 +52,7 @@ const MainRouter: FC = () => {
<Route path={Paths.product.create} element={<CreateProduct />} />
<Route path={Paths.product.update + ':id'} element={<UpdateProduct />} />
<Route path={Paths.product.attribute.create + ':id'} element={<CreateAttribute />} />
<Route path={Paths.product.attribute.list + ':id'} element={<AttributeList />} />
<Route path={Paths.product.category.list} element={<CategoryList />} />
<Route path={Paths.product.category.create} element={<CreateCategory />} />
<Route path={Paths.product.category.update + ':id'} element={<UpdateCategory />} />