Files
qr_vitanova/src/app/app.routes.ts

16 lines
370 B
TypeScript
Raw Normal View History

2026-04-30 01:17:17 +04:00
import { Routes } from '@angular/router';
2026-04-23 03:49:40 +04:00
2026-04-30 01:17:17 +04:00
export const routes: Routes = [
{
path: '',
loadComponent: () =>
import('./pages/fastcheck-page/fastcheck-page').then((m) => m.FastcheckPage)
},
{
path: 'new',
loadComponent: () =>
import('./pages/create-page/create-page').then((m) => m.CreatePage)
},
{ path: '**', redirectTo: '' }
];