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

7 lines
201 B
JavaScript
Raw Normal View History

export actions from './actions';
export reducer from './reducer';
export types from './types';
import fetchChallengesSaga from './fetch-challenges-saga';
export const sagas = [ fetchChallengesSaga ];