8 lines
308 B
JavaScript
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 ];
|