Skip to content

Instantly share code, notes, and snippets.

@OliverJAsh
Created November 22, 2018 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OliverJAsh/fae9e8bf323e650448adf548576b78e9 to your computer and use it in GitHub Desktop.
Save OliverJAsh/fae9e8bf323e650448adf548576b78e9 to your computer and use it in GitHub Desktop.
const counterEpic: Epic<Action, Action, CounterState> = (
action$,
state$
) => {
const initialState = state$.value;
const { id } = initialState;
return Rx.interval(1000).mapTo(incrementCounter(id));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment