Move fetchChallenges up a level

This commit is contained in:
Berkeley Martinez
2016-05-06 16:04:23 -07:00
parent 861f89683b
commit 59dcabb588
10 changed files with 46 additions and 44 deletions

View File

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