Files
freeCodeCamp/common/app/routes/challenges/redux/index.js

9 lines
266 B
JavaScript
Raw Normal View History

export actions from './actions';
export reducer from './reducer';
export types from './types';
import fetchChallengesSaga from './fetch-challenges-saga';
2016-06-01 15:52:08 -07:00
import completionSaga from './completion-saga';
export const sagas = [ fetchChallengesSaga, completionSaga ];