Angular - Routing
Given this route config:
What happens when navigating to
{ path: 'dashboard', component: DashboardComponent, children: [ { path: 'stats', component: StatsComponent } ] }What happens when navigating to
/dashboard/stats?