This commit is contained in:
sdarbinyan
2026-02-20 01:46:14 +04:00
parent 070e254a5c
commit 083b270c74
23 changed files with 878 additions and 109 deletions

View File

@@ -5,6 +5,7 @@ import { CategoryEditorComponent } from './pages/category-editor/category-editor
import { SubcategoryEditorComponent } from './pages/subcategory-editor/subcategory-editor.component';
import { ItemsListComponent } from './pages/items-list/items-list.component';
import { ItemEditorComponent } from './pages/item-editor/item-editor.component';
import { ItemPreviewComponent } from './pages/item-preview/item-preview.component';
export const routes: Routes = [
{
@@ -30,6 +31,10 @@ export const routes: Routes = [
{
path: 'item/:itemId',
component: ItemEditorComponent
},
{
path: 'item/:itemId/preview',
component: ItemPreviewComponent
}
]
},