Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <div *ngIf="userList | async as users; else loading">
  2. <user-profile *ngFor="let user of users; count as count; index as i" [user]="user">
  3. User {{i}} of {{count}}
  4. </user-profile>
  5. </div>
  6. <ng-template #loading>Loading...</ng-template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement