Skip to content

Instantly share code, notes, and snippets.

@taylorc
Created May 9, 2018 03:21
Show Gist options
  • Save taylorc/6c35e8c961832f14cd3aba8152d46119 to your computer and use it in GitHub Desktop.
Save taylorc/6c35e8c961832f14cd3aba8152d46119 to your computer and use it in GitHub Desktop.
view-posts.component.html
<div *ngIf="(loading$ | async) === false">
<ul>
<li *ngFor="let p of posts$ | async">
{{p.title}}
</li>
</ul>
</div>
<div *ngIf="(loading$ | async) === true">
Loading.....
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment