feat(dashboard): Add forms for edit and create product options (#6907)

This commit is contained in:
Kasper Fabricius Kristensen
2024-04-04 18:14:05 +02:00
committed by GitHub
parent fd3fc1384b
commit 880bbbd4af
14 changed files with 252 additions and 56 deletions
@@ -231,8 +231,14 @@ export const v1Routes: RouteObject[] = [
import("../../routes/products/product-attributes"),
},
{
path: "options",
lazy: () => import("../../routes/products/product-options"),
path: "options/create",
lazy: () =>
import("../../routes/products/product-create-option"),
},
{
path: "options/:option_id/edit",
lazy: () =>
import("../../routes/products/product-edit-option"),
},
{
path: "media",