Angular - Components
Given this component code:
What will be rendered in the browser?
@Component({selector: 'app-msg', template: '{{message}}
'}) export class MsgComponent { message = 'Hello'; }What will be rendered in the browser?
