BREAKING CHANGES: Converted to use Redux stores. Login now working using Redux.
This commit is contained in:
11
client/src/redux/root.saga.js
Normal file
11
client/src/redux/root.saga.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { all, call } from "redux-saga/effects";
|
||||
|
||||
//List of all Sagas
|
||||
// import { shopSagas } from "./shop/shop.sagas";
|
||||
import { userSagas } from "./user/user.sagas";
|
||||
//import { cartSagas } from "./cart/cart.sagas";
|
||||
|
||||
export default function* rootSaga() {
|
||||
//All starts all the Sagas concurrently.
|
||||
yield all([call(userSagas)]);
|
||||
}
|
||||
Reference in New Issue
Block a user