Skip to content

Instantly share code, notes, and snippets.

@lacolaco
Created November 3, 2017 00:06
Show Gist options
  • Save lacolaco/8a2da2ddcf1c3f3339bf3da1ce729306 to your computer and use it in GitHub Desktop.
Save lacolaco/8a2da2ddcf1c3f3339bf3da1ce729306 to your computer and use it in GitHub Desktop.
<div *ngIf="show; then thenBlock; else elseBlock"></div>
<ng-template #thenBlock>show === true</ng-template>
<ng-template #elseBlock>show === false</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment