import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { ProfileListComponent } from './profile-list/profile-list.component'; import { ProfileAddUpdateComponent } from './profile-add-update/profile-add-update.component'; const routes: Routes = [ { path: '', component: ProfileListComponent }, { path: 'add', component: ProfileAddUpdateComponent, data: { mode: 'Add' } }, { path: 'edit/:id', component: ProfileAddUpdateComponent, data: { mode: 'Edit' } } ]; @NgModule({ imports: [RouterModule.forChild(routes)], exports: [RouterModule] }) export class ProfileRoutingModule {}