Currently diving into Angular routing, I've added two routerLinks to the parent component. It appears that routing is set up correctly, but for some reason the page remains unchanged. Parent Child
const childrenRoutes: Routes =[
{path: 'overview', component: AutocompleteOverviewComponent},
{path: 'api', component: AutocompleteApiComponent}
]
const routes: Routes = [
{path: '', redirectTo: 'autocomplete', pathMatch: 'full'},
{path: 'autocomplete', component: DashboardComponent, children: childrenRoutes},
];