Created
April 10, 2017 16:50
-
-
Save aramkoukia/226dcbce41ab152f13dedc49c37fd503 to your computer and use it in GitHub Desktop.
Angular 4 what's new
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 *ngIf="userList | async as users; else loading"> | |
| <user-profile *ngFor="let user of users; count as count" [user]="user"> | |
| </user-profile> | |
| <div>{{count}} total users</div> | |
| </div> | |
| <ng-template #loading>Loading...</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment