-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
30 lines (23 loc) · 808 Bytes
/
App.js
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
import * as React from 'react';
import {AppRegistry, StyleSheet, Text, View, Button} from 'react-native';
import{resource} from './src/config/Resource'
import { Drawer } from './src/navigation/Drawer'
import { AppNavigator } from './src/navigation/AppNavigator'
import styles from './src/styles/defaultStyle';
import PlanetInfo from './src/pages/PlanetInfo'
import Planets from './src/pages/Planets'
import HamburgerMenu from './src/navigation/HamburgerMenu'
import { Provider } from 'react-redux';
import store from './src/store';
import {
StackNavigator,
} from 'react-navigation';
class App extends React.Component {
render() {
return (<Provider store={store}>
<AppNavigator/></Provider>
);
}
}
AppRegistry.registerComponent('ExoPlanetHunter', () => App);
export default App;