When using ngIf with the asterisk, we can do the following:
<ng-container *ngIf="obj | async as result">{{result}}</ng-container>
How can we do the same with ng-template?
<ng-template [ngIf]="(obs | async) as result">
{{result}}
</ng-template>
The above code throws.