fix: Overview route, add period selector back, prepare product CRUD routes

This commit is contained in:
dwindown
2025-11-05 00:20:12 +07:00
parent eecb34e968
commit 5166ac4bd3
3 changed files with 15 additions and 2 deletions

View File

@@ -327,6 +327,8 @@ function AppRoutes() {
{/* Products */}
<Route path="/products" element={<ProductsIndex />} />
<Route path="/products/new" element={<ProductNew />} />
<Route path="/products/:id/edit" element={<ProductNew />} />
<Route path="/products/:id" element={<ProductNew />} />
<Route path="/products/categories" element={<ProductCategories />} />
<Route path="/products/tags" element={<ProductTags />} />
<Route path="/products/attributes" element={<ProductAttributes />} />