11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
import {all, call} from 'redux-saga/effects'
|
|
|
|
function createRootSaga() {
|
|
return function*() {
|
|
return yield all([
|
|
].map(call));
|
|
};
|
|
}
|
|
|
|
export default createRootSaga;
|