Skip to content

Instantly share code, notes, and snippets.

@munkacsitomi
Created October 25, 2018 17:37
Show Gist options
  • Select an option

  • Save munkacsitomi/24846fac8ab6c41fb26752cbff0c9b9f to your computer and use it in GitHub Desktop.

Select an option

Save munkacsitomi/24846fac8ab6c41fb26752cbff0c9b9f to your computer and use it in GitHub Desktop.
<div *ngIf="(user$ | async) as user; else loading">
<user-profile
[user]="user">
</user-profile>
<user-messages
[user]="user">
</user-messages>
</div>
<ng-template #loading>
Loading stuff...
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment