Files
frontend-app-profile/src/data/sagas.js
David Joy f266bba04c fix: initialize redux in prod mode by default (#303)
We were accidentally initializing in dev mode in production.

Also cleaning up some other misc detritus.
2019-10-22 15:11:35 -04:00

10 lines
173 B
JavaScript

import { all } from 'redux-saga/effects';
import { saga as profileSaga } from '../profile';
export default function* rootSaga() {
yield all([
profileSaga(),
]);
}