Files
print-calculator/frontend/src/app/features/contact/contact.routes.ts
Joe Küng 2f7e8798d2
Some checks failed
Build, Test and Deploy / test-backend (push) Failing after 17s
Build, Test and Deploy / build-and-push (push) Has been skipped
Build, Test and Deploy / deploy (push) Has been skipped
feat(front-end): contact form and about separated
2026-02-04 15:17:29 +01:00

9 lines
202 B
TypeScript

import { Routes } from '@angular/router';
export const CONTACT_ROUTES: Routes = [
{
path: '',
loadComponent: () => import('./contact-page.component').then(m => m.ContactPageComponent)
}
];