Angular - Lifecycle Hooks
Identify the error in this Angular component code:
export class SampleComponent implements OnInit {
message: string;
ngOnInit() {
this.message = 'Welcome';
}
}