Skip to content

Instantly share code, notes, and snippets.

@kiok46
Created June 10, 2018 11:52
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/ff4284c2906cc726dd4472ad3a2f5151 to your computer and use it in GitHub Desktop.
Save kiok46/ff4284c2906cc726dd4472ad3a2f5151 to your computer and use it in GitHub Desktop.
Redux, Reactotron, Actions, Reducers and Sagas (2)
import Reactotron from 'reactotron-react-native';
import sagaPlugin from 'reactotron-redux-saga';
import apisaucePlugin from 'reactotron-apisauce';
Reactotron.configure({ name: 'GiftCard' })
.useReactNative()
.use(apisaucePlugin())
.use(sagaPlugin());
Reactotron.connect(); // Connect with reactotron
Reactotron.clear(); // Clear the logs.
const sagaMonitor = Reactotron.createSagaMonitor();
export { sagaMonitor };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment