Skip to content

Instantly share code, notes, and snippets.

@Sawtaytoes
Created October 16, 2019 07:32
Show Gist options
  • Save Sawtaytoes/201298dc5a7dad18049e33c6be097944 to your computer and use it in GitHub Desktop.
Save Sawtaytoes/201298dc5a7dad18049e33c6be097944 to your computer and use it in GitHub Desktop.
const someEpic = (
action$,
store,
) => (
action$
.pipe(
ofType(FETCH_DATA),
switchMap(() => (
ajax('/data')
.pipe(
tap(() => store.dispatch(doSomething()))
map(fetchSucceeded)
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment