Skip to content

Instantly share code, notes, and snippets.

@mohandere
Created February 16, 2018 12:24
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 mohandere/febb980741fd1f138d7d11d3062c3183 to your computer and use it in GitHub Desktop.
Save mohandere/febb980741fd1f138d7d11d3062c3183 to your computer and use it in GitHub Desktop.
rootEpic.js
import {
combineEpics
} from 'redux-observable';
// Import feature wise epic
import common from './common/epics';
import catalog from './catalog/epics';
import home from './home/epics';
import archives from './archives/epics';
const rootEpic = combineEpics(
common,
catalog,
home,
archives
);
export default rootEpic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment