8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
import { all } from 'redux-saga/effects';
|
|
import { watchFileIsRequested } from './show';
|
|
|
|
export default function* rootSaga () {
|
|
yield all([
|
|
watchFileIsRequested(),
|
|
]);
|
|
}
|