-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
45 lines (39 loc) · 957 Bytes
/
App.js
File metadata and controls
45 lines (39 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React, { Component } from 'react'
import { AppRegistry, View, StyleSheet } from 'react-native'
import { addNavigationHelpers } from 'react-navigation'
import { Provider, connect } from 'react-redux'
import AppNavigator from './components/AppNavigator'
import store from './redux/store'
class App extends Component {
render() {
return (
<AppNavigator navigation={addNavigationHelpers({
dispatch: this.props.dispatch,
state: this.props.nav,
})} />
)
}
}
const AppWithNavigationState = connect(
state => ({
nav: state.nav
})
)(App)
class Root extends Component {
render() {
return (
<Provider store={store}>
<View style={styles.container}>
<AppWithNavigationState />
</View>
</Provider>
)
}
}
AppRegistry.registerComponent("FIN_APP_REACT_NATIVE", () => Root)
export default Root
const styles = StyleSheet.create({
container: {
flex: 1
}
})