I have tried this:
public state$: Observable<boolean>;
ngOnInit(): void {
this.state$ = this.appRef.isStable;
}
Template is:
{{ state$ | async }}
This does not work for me
I have tried this:
public state$: Observable<boolean>;
ngOnInit(): void {
this.state$ = this.appRef.isStable;
}
Template is:
{{ state$ | async }}
This does not work for me