Angular - Component Interaction
What is wrong with this code snippet?
@ViewChild('myDiv') myDiv: ElementRef;
ngOnInit() {
console.log(this.myDiv.nativeElement.innerText);
}