Files
print-calculator/frontend/src/app/features/shop/shop.routes.ts
Joe Küng 2c658d00c1
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 13s
Build, Test and Deploy / build-and-push (push) Successful in 28s
Build, Test and Deploy / deploy (push) Successful in 5s
feat(web): vibe coding pazzo
2026-02-02 17:38:03 +01:00

9 lines
310 B
TypeScript

import { Routes } from '@angular/router';
import { ShopPageComponent } from './shop-page.component';
import { ProductDetailComponent } from './product-detail.component';
export const SHOP_ROUTES: Routes = [
{ path: '', component: ShopPageComponent },
{ path: ':id', component: ProductDetailComponent }
];