|
// App.js |
|
|
|
import React from 'react'; |
|
import { StyleSheet, Text, View } from 'react-native'; |
|
|
|
import { Provider } from 'react-redux'; |
|
import { createStore } from 'redux'; |
|
import rootReducer from './reducers'; |
|
|
|
const initialState = { |
|
settings: [] |
|
} |
|
|
|
const store = createStore(rootReducer, initialState); |
|
|
|
export default function App() { |
|
return ( |
|
<Provider store={store}> |
|
<View style={styles.container}> |
|
<Text>Open up App.js to start working on your app!</Text> |
|
</View> |
|
</Provider> |
|
); |
|
} |
|
|
|
const styles = StyleSheet.create({ |
|
container: { |
|
flex: 1, |
|
backgroundColor: '#fff', |
|
alignItems: 'center', |
|
justifyContent: 'center', |
|
}, |
|
}); |