Angular - Routing
Given the following Angular route configuration and template, what will be displayed when the URL is '/home'?
const routes = [
{ path: 'home', component: HomeComponent },
{ path: 'about', component: AboutComponent }
];
Template:
<router-outlet></router-outlet>