-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathApp.js
37 lines (34 loc) · 963 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
31
32
33
34
35
36
37
/**
* This Module is an entry point of the App for React Native.
*/
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { Provider } from "react-redux";
import { initializeStore } from "./initializeStore";
import Header from "./app/components/header/headerComponent.js";
import { Footer } from "./app/components/footer/footerComponent.js";
import MainComponent from "./app/components/mainContent/mainBodyComponent.js";
const store = initializeStore();
const styles = StyleSheet.create({
container: {
backgroundColor: '#000000',
alignItems: 'center',
overflow: 'scroll'
},
color: {
color: '#f5deb3'
}
});
export default class App extends React.Component {
render() {
return (
<Provider store={store}>
<View style={styles.container}>
<Header></Header>
<MainComponent></MainComponent>
<Footer></Footer>
</View>
</Provider>
);
}
};