Skip to content

Instantly share code, notes, and snippets.

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