This commit is contained in:
smals-lade
2026-02-10 11:45:38 +01:00
parent 9f1fdb610d
commit fa2d48b965
2 changed files with 18 additions and 3 deletions
+11 -1
View File
@@ -125,6 +125,16 @@ export const routes: Routes = [
}
]
},
{
path: 'dependencies',
children: [
{
path: '',
loadComponent: () => import('./features/dependencies/dependency-list/dependency-list.component')
.then(m => m.DependencyListComponent)
}
]
},
{
path: 'persons',
children: [
@@ -177,4 +187,4 @@ export const routes: Routes = [
}
]
}
];
];