Skip to content

Instantly share code, notes, and snippets.

@daniele-zurico
Created June 19, 2018 18:14
Show Gist options
  • Save daniele-zurico/baa3b65186bf06a95ab624f645e10fd6 to your computer and use it in GitHub Desktop.
Save daniele-zurico/baa3b65186bf06a95ab624f645e10fd6 to your computer and use it in GitHub Desktop.
ngOnInit() {
this.heroes$ = this.store.select(getHeroes);
this.isFirst$ = this.store.select(getIsFirstPage);
this.isLast$ = this.store.select(getIsLastPage);
this.isLoading$ = this.store.select(getIsLoading);
this.store.dispatch(new FetchHeroes());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment