list of attributes
This commit is contained in:
@@ -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 />} />
|
||||
|
||||
Reference in New Issue
Block a user