spee.ch/react/sagas/index.js
2018-02-08 10:59:49 -08:00

12 lines
375 B
JavaScript

import { all } from 'redux-saga/effects';
import { watchNewAssetRequest, watchShowNewAsset, watchNewChannelRequest, watchShowNewChannel, watchFileIsRequested } from './show';
export default function* rootSaga () {
yield all([
watchNewAssetRequest(),
watchShowNewAsset(),
watchNewChannelRequest(),
watchShowNewChannel(),
watchFileIsRequested(),
]);
}