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";
|
2019-03-26 15:28:24 +00:00
|
|
|
|
|
|
|
|
export function* rootSaga() {
|
2019-09-16 10:37:38 +00:00
|
|
|
yield all([
|
|
|
|
|
spawn(watchFetchPage),
|
|
|
|
|
spawn(fetchWidgetCardsSaga),
|
|
|
|
|
spawn(watchExecuteAction),
|
|
|
|
|
]);
|
2019-03-26 15:28:24 +00:00
|
|
|
}
|