mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
076b614488
- add view-event page - add edit-event page
26 lines
612 B
TypeScript
26 lines
612 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { SearchPage } from './search.page';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: SearchPage
|
|
},
|
|
{
|
|
path: 'sender',
|
|
loadChildren: () => import('./sender/sender.module').then( m => m.SenderPageModule)
|
|
},
|
|
{
|
|
path: 'organic-entity',
|
|
loadChildren: () => import('./organic-entity/organic-entity.module').then( m => m.OrganicEntityPageModule)
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class SearchPageRoutingModule {}
|