Angular - Modules
Given this route config:
What happens when the user navigates to '/dashboard'?
{ path: 'dashboard', loadChildren: () => import('./dashboard/dashboard.module').then(m => m.DashboardModule) }What happens when the user navigates to '/dashboard'?
