Need to show two different texts based out of a boolean Value.
I tried this
<div name="health-plans" *ngIf="!flagon">
Test<br />data
</div>`
` <div name="health-plans" *ngIf="flagon">
Test data <br /> & value
</div>
But I need to simpify this with one div based out on condition.
Angular 17+
Angular <17