angular 8 create component and pass to route code example

Example 1: generate module with routing in angular

ng g m [ModuleName] --routing

Example 2: how to create app.routing.module.ts in angular 6

ng generate module app-routing --flat --module=app

Example 3: angular routing url params

const appRoutes: Routes = [
  { path: 'crisis-center/:param1', component: CrisisListComponent },
  { path: 'hero/:param2',      component: HeroDetailComponent },
];

@NgModule({
  imports: [
    RouterModule.forRoot(
      appRoutes,
      { enableTracing: true } // <-- debugging purposes only
    )
    // other imports here
  ],
  ...
})
export class AppModule { }