what happened if we use ngif and ngfor in a same line code example
Example: *ngIf and *ngFor in same container
<ng-container *ngIf="show">
<div *ngFor="let thing of stuff">
{{log(thing)}}
<span>{{thing.name}}</span>
</div>
</ng-container>