Adding the Edit route

Last but not least, we need to add the Edit route to the AppModule class. Open the /ClientApp/app/app.module.shared.ts file and add the following:

[...]

RouterModule.forRoot([
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', component: HomeComponent },
{ path: 'quiz/create', component: QuizEditComponent },
{ path: 'quiz/edit/:id', component: QuizEditComponent },

[...]
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.137.223.10