I am new to Angular. I am using Angular 7 and doing a simple routing. After Login page, I want to display a home page. Login is a part of app-root component and in
app-root
it should be like this in your dashboard-routing-module.ts:
const routes: Routes = [{ path: '', component: DashBoardComponent, children: [ { path: '', redirectTo: 'home', pathMatch: 'prefix' }, { path: 'home', component: HomeComponent } ] }];