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