UNPKG

symphony-integration-commons

Version:

Common components for 3rd party developers build the user facing application for Symphony Integrations.

19 lines (16 loc) 435 B
import { fork } from 'redux-saga/effects'; import { getUserId } from './getUserId'; import { getRooms } from './getRooms'; import { getParams } from './getParams'; import { getInstructions } from './getInstructions'; import { watchfier } from './watchfier'; function* rootSaga() { yield [ fork(getParams), fork(getInstructions), fork(getUserId), fork(getRooms), fork(watchfier), ]; } export default rootSaga;