[ ADD ] react configuration
This commit is contained in:
9
react/src/store/sagas/index.js
Normal file
9
react/src/store/sagas/index.js
Normal file
@ -0,0 +1,9 @@
|
||||
import { FeatureSaga1 } from '../Feature1/FeatureSagas';
|
||||
import { fork, all } from "redux-saga/effects";
|
||||
|
||||
export function* watchSagas() {
|
||||
//Combine sagas with
|
||||
yield all([FeatureSaga1()]);
|
||||
// OR
|
||||
// yield all([fork(FeatureSaga1)]);
|
||||
}
|
Reference in New Issue
Block a user