Refactord email popup screen to use Redx + implement all email redux/saga scaffolding.
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
import { all, call } from "redux-saga/effects";
|
||||
|
||||
//List of all Sagas
|
||||
// import { shopSagas } from "./shop/shop.sagas";
|
||||
import { userSagas } from "./user/user.sagas";
|
||||
import { messagingSagas } from "./messaging/messaging.sagas";
|
||||
//import { cartSagas } from "./cart/cart.sagas";
|
||||
|
||||
import { emailSagas } from "./email/email.sagas";
|
||||
export default function* rootSaga() {
|
||||
//All starts all the Sagas concurrently.
|
||||
yield all([call(userSagas), call(messagingSagas)]);
|
||||
yield all([call(userSagas), call(messagingSagas), call(emailSagas)]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user