We use a lot of ng-templates in our HTML and have cases where we would need to swap one with another based on a condition. ngSwitch comes handy in this case. Please see below for an example.
<div [ngSwitch]="put the condition expression here">
<template [ngSwitchCase]="condition value1">
...
</template>
<template [ngSwitchCase]="condition value 2">
...
</template>
<template [ngSwitchDefault]="no match">
...
<template >
</div>
Visit the DevX Tip Bank