Skip to content

Instantly share code, notes, and snippets.

@wojtek1150
Created June 1, 2018 07:42
Show Gist options
  • Save wojtek1150/44784e4095a20d955eeb9897aba11021 to your computer and use it in GitHub Desktop.
Save wojtek1150/44784e4095a20d955eeb9897aba11021 to your computer and use it in GitHub Desktop.
this.subscription$ = this.store.select(fromStore.getAllUsers).subscribe(users => {
... // do something with data
this.users = users // just an example
}
//on destroy
this.subscription$.unsubscribe();
<ul>
<li *ngFor="let user of users">...</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment