import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { AgendaPage } from './agenda.page'; const routes: Routes = [ { path: '', component: AgendaPage }, { path: 'approve-event-modal', loadChildren: () => import('../gabinete-digital/event-list/approve-event-modal/approve-event-modal.module').then( m => m.ApproveEventModalPageModule) }, { path: 'event-actions-popover', loadChildren: () => import('./event-actions-popover/event-actions-popover.module').then( m => m.EventActionsPopoverPageModule) }, { path: 'emend-message-modal', loadChildren: () => import('./emend-message-modal/emend-message-modal.module').then( m => m.EmendMessageModalPageModule) }, { path: 'new-event', loadChildren: () => import('./new-event/new-event.module').then( m => m.NewEventPageModule) }, { path: 'edit-event', loadChildren: () => import('./edit-event/edit-event.module').then( m => m.EditEventPageModule) }, { path: 'view-event', loadChildren: () => import('./view-event/view-event.module').then( m => m.ViewEventPageModule) }, { path: 'evandre', loadChildren: () => import('./evandre/evandre.module').then( m => m.EvandrePageModule) } ]; @NgModule({ imports: [RouterModule.forChild(routes)], exports: [RouterModule], }) export class AgendaPageRoutingModule {}