How can you rewrite this markup so the div container is not needed in the final DOM render
<div *ngIf="location">
<h1>{{ location.name }}</h1>
<p>{{ location.description }}</p>
</div>
How can you rewrite this markup so the div container is not needed in the final DOM render
<div *ngIf="location">
<h1>{{ location.name }}</h1>
<p>{{ location.description }}</p>
</div>