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

22 lines
584 B
JavaScript
Raw Normal View History

import fetchChallengesSaga from './fetch-challenges-saga';
2016-06-01 15:52:08 -07:00
import completionSaga from './completion-saga';
import nextChallengeSaga from './next-challenge-saga';
import answerSaga from './answer-saga';
2016-07-07 20:02:03 -07:00
import resetChallengeSaga from './reset-challenge-saga';
import bugSaga from './bug-saga';
2016-06-01 15:52:08 -07:00
export * as actions from './actions';
export reducer from './reducer';
export types from './types';
2016-06-07 20:41:42 -07:00
export projectNormalizer from './project-normalizer';
export const sagas = [
fetchChallengesSaga,
completionSaga,
nextChallengeSaga,
2016-07-07 20:02:03 -07:00
answerSaga,
resetChallengeSaga,
bugSaga
];