Skip to content

Instantly share code, notes, and snippets.

@pke
Created October 30, 2016 00:27
Show Gist options
  • Save pke/e3cb6941d838cb711329a81958eb8fc8 to your computer and use it in GitHub Desktop.
Save pke/e3cb6941d838cb711329a81958eb8fc8 to your computer and use it in GitHub Desktop.
const store = configureStore()
if (window.cordova) {
const onDeviceReady = () => {
store.dispatch(deviceReady())
}
document.addEventListener("deviceready", onDeviceReady, false)
}
ReactDOM.render(
<Provider store={configureStore()}>
<App/>
</Provider>,
document.getElementById('root'),
() => {
store.dispatch(deviceReady())
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment