src/app/profile/profile-routing.module.ts
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { ProfilePage } from './profile.page';
import { RouterLinks } from '../app.constant';
const routes: Routes = [
{ path: '', component: ProfilePage, },
{ path: 'guest-profile', loadChildren: './guest-profile/guest-profile.module#GuestProfilePageModule' },
{ path: 'guest-edit', loadChildren: './guest-edit/guest-edit.module#GuestEditPageModule' },
{ path: 'personal-details-edit', loadChildren: './personal-details-edit/personal-details-edit.module#PersonalDetailsEditPageModule' },
{ path: 'categories-edit', loadChildren: './categories-edit/categories-edit.module#CategoriesEditPageModule' },
{ path: 'sub-profile-edit', loadChildren: './sub-profile-edit/sub-profile-edit.module#SubProfileEditPageModule' },
{ path: 'manage-user-profiles', loadChildren: './manage-user-profiles/manage-user-profiles.module#ManageUserProfilesPageModule' },
{
path: 'self-declared-teacher-edit' + '/:mode' ,
loadChildren: './self-declared-teacher-edit/self-declared-teacher-edit.module#SelfDeclaredTeacherEditPageModule'
},
{
path: 'framework-selection',
loadChildren: './framework-selection/framework-selection.module#FrameworkSelectionPageModule'
},
{
path: 'certificate-view',
loadChildren: './certificate-view/certificate-view.module#CertificateViewPageModule'
}
];
@NgModule({
imports: [
RouterModule.forChild(routes)
],
exports: [RouterModule]
})
export class ProfileRoutingModule { }