create attibute value

This commit is contained in:
hamid zarghami
2026-01-25 11:43:57 +03:30
parent 69fb2786bc
commit d3eab9ed75
8 changed files with 189 additions and 1 deletions
+2
View File
@@ -32,6 +32,7 @@ import UpdateProduct from '@/pages/product/Update'
import CreateAttribute from '@/pages/product/attribute/Create'
import AttributeList from '@/pages/product/attribute/List'
import UpdateAttribute from '@/pages/product/attribute/Update'
import AttributeValues from '@/pages/product/attribute/AttributeValues'
const MainRouter: FC = () => {
return (
@@ -55,6 +56,7 @@ const MainRouter: FC = () => {
<Route path={Paths.product.attribute.create + ':id'} element={<CreateAttribute />} />
<Route path={Paths.product.attribute.list + ':id'} element={<AttributeList />} />
<Route path={Paths.product.attribute.update + ':id'} element={<UpdateAttribute />} />
<Route path={Paths.product.attributeValue.list + ':id'} element={<AttributeValues />} />
<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 />} />