Files
print-calculator/frontend/src/app/features/about/about.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

7 lines
191 B
TypeScript

import { Routes } from '@angular/router';
import { AboutPageComponent } from './about-page.component';
export const ABOUT_ROUTES: Routes = [
{ path: '', component: AboutPageComponent }
];