Files
imexmobile/redux/root.saga.js

8 lines
228 B
JavaScript

import { all, call } from "redux-saga/effects";
import { appSagas } from "./app/app.sagas";
import { userSagas } from "./user/user.sagas";
export default function* rootSaga() {
yield all([call(userSagas), call(appSagas)]);
}