feat(doc): move notifivation

This commit is contained in:
thomas
2023-10-18 09:52:27 +02:00
parent 27e7137716
commit c0caace62f
32 changed files with 19 additions and 19 deletions

View File

@@ -0,0 +1,20 @@
import { Route } from '@angular/router';
export const ROUTES: Route[] = [
{ path: '', pathMatch: 'full', redirectTo: 'teacher' },
{
path: 'teacher',
loadComponent: () =>
import('./teacher/teacher.component').then((m) => m.TeacherComponent),
},
{
path: 'student',
loadComponent: () =>
import('./student/student.component').then((m) => m.StudentComponent),
},
{
path: 'school',
loadComponent: () =>
import('./school/school.component').then((m) => m.SchoolComponent),
},
];