16 lines
401 B
JavaScript
16 lines
401 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';
|
|
|
|
export projectNormalizer from './project-normalizer';
|
|
|
|
export const sagas = [
|
|
fetchChallengesSaga,
|
|
completionSaga,
|
|
nextChallengeSaga
|
|
];
|