In component :
singleEvent$: Observable;
On init, I get observable
this.singleEvent$ = this._eventService.even
To get data from an observable, you need to subscribe:
this.singleEvents$.subscribe(event => this.event = event);
In the template you can directly bind to observables using the async pipe:
{{singleEvents$ | async}}