Created
June 18, 2016 05:00
-
-
Save dabit3/019fb1b3496c35c6b03e912a8f6f3c1d to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 3 - index.ios.js / index.android.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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