2020-08-05 15:39:16 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
|
|
import { SearchPage } from './search.page';
|
|
|
|
|
|
|
|
|
|
const routes: Routes = [
|
|
|
|
|
{
|
|
|
|
|
path: '',
|
|
|
|
|
component: SearchPage
|
2021-01-16 17:45:09 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'sender',
|
|
|
|
|
loadChildren: () => import('./sender/sender.module').then( m => m.SenderPageModule)
|
2021-01-18 14:59:09 +01:00
|
|
|
},
|
2021-01-19 16:44:39 +01:00
|
|
|
{
|
|
|
|
|
path: 'organic-entity',
|
|
|
|
|
loadChildren: () => import('./organic-entity/organic-entity.module').then( m => m.OrganicEntityPageModule)
|
2020-08-05 15:39:16 +01:00
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [RouterModule.forChild(routes)],
|
|
|
|
|
exports: [RouterModule],
|
|
|
|
|
})
|
|
|
|
|
export class SearchPageRoutingModule {}
|