Created
June 1, 2018 07:42
-
-
Save wojtek1150/44784e4095a20d955eeb9897aba11021 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
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