blob: f5d3e78b4ac905f3168c1032b3c86417060ab199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { all } from 'redux-saga/effects';
import taskSagas from 'enl-containers/SampleFullstackApps//Todo/reducers/todoSagas';
import contactSagas from 'enl-containers/SampleFullstackApps/Contact/reducers/contactSagas';
import emailSagas from 'enl-containers/SampleFullstackApps/Email/reducers/emailSagas';
import authSagas from 'enl-redux/modules/authSagas';
export default function* sagas() {
yield all([
...authSagas,
...contactSagas,
...taskSagas,
...emailSagas
]);
}
|