Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Created April 10, 2017 16:50
Show Gist options
  • Select an option

  • Save aramkoukia/226dcbce41ab152f13dedc49c37fd503 to your computer and use it in GitHub Desktop.

Select an option

Save aramkoukia/226dcbce41ab152f13dedc49c37fd503 to your computer and use it in GitHub Desktop.
Angular 4 what's new
<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