Angular - Routing
Given this route configuration:
What component will Angular display when the URL path is
const routes = [
{ path: '', component: HomeComponent },
{ path: 'about', component: AboutComponent }
];What component will Angular display when the URL path is
/about?