Skip to content

Instantly share code, notes, and snippets.

@MikeRyanDev
Created February 25, 2018 21:06
Show Gist options
  • Save MikeRyanDev/ce09ac564613b5e7fca8b795bc421e04 to your computer and use it in GitHub Desktop.
Save MikeRyanDev/ce09ac564613b5e7fca8b795bc421e04 to your computer and use it in GitHub Desktop.
export class BookEffects {
@Effect() searchBooks$ = this.actions$.pipe(
ofType(INPUT_ACTION_TYPE),
switchMap(action => this.booksService.searchBooks(
action.searchTerm,
)),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment