Skip to content

Instantly share code, notes, and snippets.

@FunnyGhost
Last active March 12, 2019 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FunnyGhost/94ab719cfb03cd3454b106b2247acafc to your computer and use it in GitHub Desktop.
Save FunnyGhost/94ab719cfb03cd3454b106b2247acafc to your computer and use it in GitHub Desktop.
<h1>Favorite movies</h1>
<ng-container *ngIf="(favoriteMovies$ | async); let favoriteMovies">
<div class="movie" *ngFor="let movie of favoriteMovies">
{{ movie.title }}
</div>
</ng-container>
<div class="error" *ngIf="error">
{{ error }}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment