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

17 lines
509 B
TypeScript
Raw Normal View History

import { all, spawn } from "redux-saga/effects";
import pageSagas from "../sagas/PageSagas";
import { fetchWidgetCardsSaga } from "./WidgetCardsPaneSagas";
import { watchExecuteActionSaga } from "./ActionSagas";
import widgetOperationSagas from "./WidgetOperationSagas";
2019-09-27 16:05:33 +00:00
import errorSagas from "./ErrorSagas";
export function* rootSaga() {
yield all([
spawn(pageSagas),
spawn(fetchWidgetCardsSaga),
spawn(watchExecuteActionSaga),
spawn(widgetOperationSagas),
2019-09-27 16:05:33 +00:00
spawn(errorSagas),
]);
}