Files
freeCodeCamp/common/app/redux/index.js
2017-05-03 18:03:59 -05:00

13 lines
391 B
JavaScript

import fetchUserSaga from './fetch-user-saga';
import loadCurrentChallengeSaga from './load-current-challenge-saga';
import fetchYoutubeSaga from './fetch-youtube-saga';
export { default as reducer } from './reducer';
export * as actions from './actions';
export { default as types } from './types';
export const sagas = [
fetchUserSaga,
loadCurrentChallengeSaga,
fetchYoutubeSaga
];