feat(portal-beheer): default-fill editor page + nav (refs #131)

This commit is contained in:
not
2026-07-24 15:44:06 +02:00
parent 8797c96fa4
commit 1543732b04
3 changed files with 46 additions and 2 deletions
+2
View File
@@ -1,7 +1,9 @@
import { Route } from '@angular/router';
import { authenticatedGuard } from 'auth';
import { CatalogusPage } from './catalogus/catalogus-page';
import { DefaultFillPage } from './default-fill/default-fill-page';
export const appRoutes: Route[] = [
{ path: '', component: CatalogusPage, canActivate: [authenticatedGuard] },
{ path: 'default-fill', component: DefaultFillPage, canActivate: [authenticatedGuard] },
];