This commit is contained in:
2025-05-18 10:48:52 +02:00
parent 505faa95a3
commit f72cc8a802
13 changed files with 153 additions and 11 deletions

View File

@@ -6,6 +6,10 @@ const routes: Routes = [
{
path: '',
component: TasksPage,
children: [
{ path: 'add', loadChildren: () => import('../edit-task/edit-task.module').then(m => m.EditTaskPageModule) },
{ path: 'edit/:id', loadChildren: () => import('../edit-task/edit-task.module').then(m => m.EditTaskPageModule) }
]
}
];