PromucFlow_constructor/app/client/src/sagas/index.tsx

13 lines
367 B
TypeScript
Raw Normal View History

2019-09-16 10:37:38 +00:00
import { all, fork, spawn } from "redux-saga/effects";
import { watchFetchPage } from "../sagas/PageSagas";
import { fetchWidgetCardsSaga } from "./WidgetCardsPaneSagas";
import { watchExecuteAction } from "./ActionSagas";
export function* rootSaga() {
2019-09-16 10:37:38 +00:00
yield all([
spawn(watchFetchPage),
spawn(fetchWidgetCardsSaga),
spawn(watchExecuteAction),
]);
}