Skip to content

Instantly share code, notes, and snippets.

@ex7r3me
Created September 21, 2018 07:32
Show Gist options
  • Save ex7r3me/b953ec2283af6eea8d99af364b21256c to your computer and use it in GitHub Desktop.
Save ex7r3me/b953ec2283af6eea8d99af364b21256c to your computer and use it in GitHub Desktop.
ignite's original App.js
import '../Config'
import DebugConfig from '../Config/DebugConfig'
import React, { Component } from 'react'
import { Provider } from 'react-redux'
import RootContainer from './RootContainer'
import createStore from '../Redux'
// create our store
const store = createStore()
/**
* Provides an entry point into our application. Both index.ios.js and index.android.js
* call this component first.
*
* We create our Redux store here, put it into a provider and then bring in our
* RootContainer.
*
* We separate like this to play nice with React Native's hot reloading.
*/
class App extends Component {
render () {
return (
<Provider store={store}>
<RootContainer />
</Provider>
)
}
}
// allow reactotron overlay for fast design in dev mode
export default DebugConfig.useReactotron
? console.tron.overlay(App)
: App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment