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

import { Routes } from '@angular/router';
import { CalculatorPageComponent } from './calculator-page.component';
export const CALCULATOR_ROUTES: Routes = [
{ path: '', component: CalculatorPageComponent }
];