Files
paypoint-frontend/src/app/app.routes.ts
veenm 781723fddf
All checks were successful
Docker Image CI / build-and-push (push) Successful in 2m1s
Docker Image CI / deploy (push) Successful in 28s
Docker Image CI / notify-failure (push) Has been skipped
Update 0.0.3:
-delen van agenda toegevoegd
-popup aangepast
-accepteren van uitnodiging toegevoegd
2025-04-18 22:38:21 +02:00

39 lines
1.1 KiB
TypeScript

import {Routes} from '@angular/router';
import {AgendaComponent} from './pages/agenda/agenda.component';
import {LoginComponent} from './pages/login/login.component';
import {HomeComponent} from './pages/home/home.component';
import {KlantenComponent} from './pages/klanten/klanten.component';
import {AgendaInviteComponent} from './pages/agenda-invite/agenda-invite.component';
import {AgendaDelenComponent} from './pages/agenda-delen/agenda-delen.component';
export const routes: Routes = [
{path: '', redirectTo: 'login', pathMatch: 'full'},
{path: 'login', component: LoginComponent},
{
path: 'home',
component: HomeComponent,
children: [
{
path: 'agenda',
component: AgendaComponent,
},
{
path: 'klanten',
component: KlantenComponent,
},
{
path: 'agenda-invite',
component: AgendaInviteComponent
},
{
path: 'agenda-delen',
component: AgendaDelenComponent
}
// {
// path: 'dashboard',
// component: DashboardComponent,
// },
],
},
];