import { RouterModule, Routes } from '@angular/router'; import {ProfileOverviewComponent} from './profiles/profile-overview/profile-overview.component'; import {ProfileEditController} from './profiles/detail/detail.component'; import {ProfileCreateController} from './profiles/detail/detail.component'; const app_routes: Routes = [ { path: '', component: ProfileOverviewComponent}, { path: 'edit/:username', component: ProfileEditController}, { path: 'create', component: ProfileCreateController} ]; export const app_routing = RouterModule.forRoot(app_routes);