Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 18, 2016 05:00
Show Gist options
  • Save dabit3/019fb1b3496c35c6b03e912a8f6f3c1d to your computer and use it in GitHub Desktop.
Save dabit3/019fb1b3496c35c6b03e912a8f6f3c1d to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 3 - index.ios.js / index.android.js
import React from 'react'
import { AppRegistry } from 'react-native'
import configureStore from './app/store/configureStore'
const store = configureStore()
import TabsRootContainer from './app/containers/tabsRootContainer'
import { Provider } from 'react-redux'
const App = () => (
<Provider store={store}>
<TabsRootContainer />
</Provider>
)
AppRegistry.registerComponent('RNExperimentalRedux', () => App)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment