Angular - Fundamentals
Given this Angular code snippet, what will be the rendered output?
@Component({ selector: 'app-msg', template: `{{ message }}
` }) export class MsgComponent { message = 'Hello Angular'; }