Add Frontend

This commit is contained in:
2026-01-31 00:09:53 +01:00
parent 325d160a45
commit 7e2e2f1e69
32 changed files with 9466 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Routes } from '@angular/router';
import { ItemListComponent } from './components/item-list/item-list';
import { ItemFormComponent } from './components/item-form/item-form';
export const routes: Routes = [
{ path: '', component: ItemListComponent },
{ path: 'create', component: ItemFormComponent },
{ path: 'edit/:id', component: ItemFormComponent },
{ path: '**', redirectTo: '' }
];