Files
freeCodeCamp/common/app/routes/challenges/redux/index.js
Berkeley Martinez 4a043e151e Move Video challenges under challenges dir
Remove old hikes components
Remove unused jobs stuff
2016-07-28 23:39:17 -07:00

18 lines
455 B
JavaScript

export actions from './actions';
export reducer from './reducer';
export types from './types';
import fetchChallengesSaga from './fetch-challenges-saga';
import completionSaga from './completion-saga';
import nextChallengeSaga from './next-challenge-saga';
import answerSaga from './answer-saga';
export projectNormalizer from './project-normalizer';
export const sagas = [
fetchChallengesSaga,
completionSaga,
nextChallengeSaga,
answerSaga
];