Reactotron + redux + react-native configuration
import Reactotron from 'reactotron-react-native' | |
import { reactotronRedux } from 'reactotron-redux' | |
var store; | |
if (__DEV__) { | |
Reactotron | |
.configure({ name: 'VTX-sharepoint' }) | |
.use(reactotronRedux()) | |
.connect() | |
// monkey patch console.log to send log to reactotron | |
const yeOldeConsoleLog = console.log | |
console.log = (...args) => { | |
yeOldeConsoleLog(...args) | |
Reactotron.display({ | |
name: 'CONSOLE.LOG', | |
value: args, | |
preview: args.length > 0 && typeof args[0] === 'string' ? args[0] : null | |
}) | |
} | |
store = Reactotron.createStore(rootReducer, ...middlewares) | |
} | |
else { | |
store = createStore(rootReducer, ...middlewares) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment