Files
freeCodeCamp/common/app/routes/challenges/redux/index.js
2016-07-28 23:40:01 -07:00

18 lines
460 B
JavaScript

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