Angular - Fundamentals
This Angular component code has an error:
What is the error and how to fix it?
@Component({
selector: 'app-sample',
template: `{{title}}
`
})
export class SampleComponent {
title: string;
constructor() {
this.title = 'Hello';
}
}What is the error and how to fix it?
