Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Created June 27, 2020 20:37
Show Gist options
  • Save kingsley-einstein/723d29343015795f154e5e6e512e9245 to your computer and use it in GitHub Desktop.
Save kingsley-einstein/723d29343015795f154e5e6e512e9245 to your computer and use it in GitHub Desktop.
<div *ngIf="users$ | async as users">
<ul>
<li *ngFor="let user of users">
<span>{{ user.firstName }}</span>
<span>{{ user.lastName }}</span>
</li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment