spee.ch/react/sagas/index.js
2018-02-08 14:17:03 -08:00

15 lines
467 B
JavaScript

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