Skip to content

Instantly share code, notes, and snippets.

@lacolaco
Created November 3, 2017 00:08
Show Gist options
  • Save lacolaco/a55e454ad461d0ef7e30ce6fe73abb85 to your computer and use it in GitHub Desktop.
Save lacolaco/a55e454ad461d0ef7e30ce6fe73abb85 to your computer and use it in GitHub Desktop.
<div *ngIf="user$ | async as user; else userNotFound">
<p>{{ user.name }}</p>
<p>{{ user.age }}</p>
<img [src]="user.icon">
</div>
<ng-template #userNotFound>
<p>not found</p>
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment