[ ADD ] react configuration

This commit is contained in:
Kuroi488
2020-11-16 17:14:34 +01:00
parent 89c9cfe099
commit 5078a1a96e
71 changed files with 16891 additions and 0 deletions

View 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)]);
}