Initial Expo base app config with Redux
This commit is contained in:
19
redux/root.saga.js
Normal file
19
redux/root.saga.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import { all, call } from "redux-saga/effects";
|
||||
|
||||
// import { userSagas } from "./user/user.sagas";
|
||||
// import { messagingSagas } from "./messaging/messaging.sagas";
|
||||
// import { emailSagas } from "./email/email.sagas";
|
||||
// import { modalsSagas } from "./modals/modals.sagas";
|
||||
// import { applicationSagas } from "./application/application.sagas";
|
||||
// import { techSagas } from "./tech/tech.sagas";
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield all([
|
||||
// call(userSagas),
|
||||
// call(messagingSagas),
|
||||
// call(emailSagas),
|
||||
// call(modalsSagas),
|
||||
// call(applicationSagas),
|
||||
// call(techSagas),
|
||||
]);
|
||||
}
|
||||
Reference in New Issue
Block a user