Created
May 9, 2020 18:24
-
-
Save tkssharma/e4ced36ffa0e36a78ffa477086d3b87d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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