Angular - Components
Given this Angular component code, what will be rendered in the browser?
@Component({
selector: 'app-sample',
template: `Title
{{ description }}
`
})
export class SampleComponent {
description = 'Inline template example';
}