Skip to content

Instantly share code, notes, and snippets.

@Rome-H
Last active June 8, 2017 10:14
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 Rome-H/d3b365fc365138fa92513baa4ffa6366 to your computer and use it in GitHub Desktop.
Save Rome-H/d3b365fc365138fa92513baa4ffa6366 to your computer and use it in GitHub Desktop.
<div class="container">
<bot-detail-header
[bot]="bot$ | async"
[completedRescues]="completedRescues$ | async"
[firstName]="(user$ | async).firstName"
(subscribe)="onSubscribe($event)">
</bot-detail-header>
<table class="table rescues-list">
<tbody>
<tr *ngFor="let rescue of (completedRescues$ | async)">....</tr>
</tbody>
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment