UNPKG

nf-workflow-ui-5

Version:
12 lines (9 loc) 210 B
import {all} from 'redux-saga/effects' import bulkSagas from './bulk'; import searchSagas from './search'; export default function* rootSaga() { yield all([ ...bulkSagas, ...searchSagas ]); }