Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created May 9, 2020 18:24
Show Gist options
  • Save tkssharma/e4ced36ffa0e36a78ffa477086d3b87d to your computer and use it in GitHub Desktop.
Save tkssharma/e4ced36ffa0e36a78ffa477086d3b87d to your computer and use it in GitHub Desktop.
<div class="container">
<div class="block">
<h1>List of users</h1>
<ul *ngIf="userWithPost$ | async as userList">
<li *ngFor="let user of userList">
<a href="#" (click)="selectUser(user.id)">{{user.username}}</a>
</li>
</ul>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment