This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

23
src/app/routes.ts Normal file
View File

@@ -0,0 +1,23 @@
import {Routes} from '@angular/router';
export const routes: Routes = [
{
path: '',
pathMatch: 'full',
redirectTo: '/dashboard'
},
{
path: 'dashboard',
loadComponent: () => import('./components/pages/dashboard/dashboard').then(x => x.Dashboard),
children: [
{
path: 'test',
loadComponent: () => import('./components/pages/test/test').then(x => x.Test)
}
]
},
{
path: 'login',
loadComponent: () => import('./components/pages/login/login').then(x => x.Login),
},
];