Angular - Standalone Components
Given this route config, what happens when navigating to '/dashboard'?
{ path: 'dashboard', loadComponent: () => import('./dashboard.component').then(m => m.DashboardComponent) }