Created
November 3, 2017 00:08
-
-
Save lacolaco/a55e454ad461d0ef7e30ce6fe73abb85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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