Angular - Component Interaction
Identify the error in the following Angular component code using
@ViewChild: export class MyComponent {
@ViewChild('myButton') buttonRef: ElementRef;
ngOnInit() {
this.buttonRef.nativeElement.click();
}
}