Angular - Components
Given this component decorator:
What will be rendered in the browser when
@Component({ selector: 'app-hello', template: '{{ message }}
' })
export class HelloComponent { message = 'Hi!'; }What will be rendered in the browser when
<app-hello></app-hello> is used?