Skip to content

Instantly share code, notes, and snippets.

@kiok46
Created June 10, 2018 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiok46/0c89a36ba2b4363839bb1287182c3556 to your computer and use it in GitHub Desktop.
Save kiok46/0c89a36ba2b4363839bb1287182c3556 to your computer and use it in GitHub Desktop.
Redux, Reactotron, Actions, Reducers and Sagas (2)
import { all, fork } from 'redux-saga/effects';
import CustomTextInputSagas from './CustomTextInputSagas';
export default function* rootSaga() {
yield all([
fork(CustomTextInputSagas.watcherTextChanged),
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment