update attribute

This commit is contained in:
hamid zarghami
2026-01-25 10:23:56 +03:30
parent f8f79e3a9d
commit 33130ba76d
5 changed files with 185 additions and 1 deletions
+2
View File
@@ -31,6 +31,7 @@ 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'
import UpdateAttribute from '@/pages/product/attribute/Update'
const MainRouter: FC = () => {
return (
@@ -53,6 +54,7 @@ const MainRouter: FC = () => {
<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.attribute.update + ':id'} element={<UpdateAttribute />} />
<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 />} />