Angular - Routing
Consider this routes array:
What happens if the URL path is '/dashboard'?
const routes = [
{ path: 'profile', component: ProfileComponent },
{ path: 'settings', component: SettingsComponent }
];What happens if the URL path is '/dashboard'?
