Angular - Routing
What is wrong with this nested routing setup?
And in HomeComponent template:
Navigation to '/home/about' shows blank page.
const routes = [ { path: 'home', component: HomeComponent, children: [ { path: 'about', component: AboutComponent } ] } ];And in HomeComponent template:
<router-outlet>
Navigation to '/home/about' shows blank page.
