Files
freeCodeCamp/common/app/redux/index.js
2016-07-28 23:39:17 -07:00

8 lines
308 B
JavaScript

export { default as reducer } from './reducer';
export { default as actions } from './actions';
export { default as types } from './types';
import fetchUserSaga from './fetch-user-saga';
import fetchChallengesSaga from './fetch-challenges-saga';
export const sagas = [ fetchUserSaga, fetchChallengesSaga ];