Angular - RxJS and Observables Fundamentals
Identify the error in this Angular component code:
What is the main problem here?
export class DataComponent implements OnInit {
data$ = this.service.getData();
ngOnInit() {
this.data$.subscribe(data => {
console.log(data);
});
}
}What is the main problem here?
