farcasmihai91
4/21/2018 - 11:13 AM

Angular - NgIfThenElse

<ng-container *ngIf="arriving;
    then arrivingContent;
    else departingContent">
  </ng-container>
  
  <!-- Templates @ page-bottom -->

  <ng-template #arrivingContent>Hello World</ng-template>
  <ng-template #departingContent>Goodbye World</ng-template>