0
0
llucycodes42
In the above code, we are importing the Component from @angular/core. We are also specifying that our AppComponent class will be exported. This means that outside of our AppComponent class, we can reference the RouterOutlet.
Library: angular
Shortcut: a_component_root
import { Component } from '@angular/core';
@Component({
selector: 'prefix-app',
template: `
<router-outlet></router-outlet>
`
})
export class AppComponent { }