Skip to content

Instantly share code, notes, and snippets.

@sagerio
Last active March 15, 2019 23:35
Show Gist options
  • Save sagerio/1269ee0d55e9b1ebd87c3e79a7c174e0 to your computer and use it in GitHub Desktop.
Save sagerio/1269ee0d55e9b1ebd87c3e79a7c174e0 to your computer and use it in GitHub Desktop.
<div *ngIf="(user$ | async) as user; else loading">
<user-profile
[user]="user.profile">
</user-profile>
<user-messages
[user]="user.messages">
</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