Guest User

Untitled

a guest
Jun 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ngOnInit() {
  2. this.heroes$ = this.store.select(getHeroes);
  3. this.isFirst$ = this.store.select(getIsFirstPage);
  4. this.isLast$ = this.store.select(getIsLastPage);
  5. this.isLoading$ = this.store.select(getIsLoading);
  6.  
  7. this.store.dispatch(new FetchHeroes());
  8. }
Add Comment
Please, Sign In to add comment