2019-03-26 15:28:24 +00:00
|
|
|
import { all } from "redux-saga/effects"
|
2019-03-30 12:30:42 +00:00
|
|
|
import { watchFetchPage } from "../sagas/PageSagas"
|
2019-08-21 12:49:16 +00:00
|
|
|
import { fetchWidgetCardsSaga } from './WidgetCardsPaneSagas'
|
2019-03-26 15:28:24 +00:00
|
|
|
|
|
|
|
|
export function* rootSaga() {
|
2019-08-21 12:49:16 +00:00
|
|
|
yield all([watchFetchPage(), fetchWidgetCardsSaga()])
|
2019-03-26 15:28:24 +00:00
|
|
|
}
|