-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.js
69 lines (52 loc) · 1.35 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React from 'react';
import { StyleSheet, Text, View, TouchableOpacity, ScrollView } from 'react-native';
import Navigator from './src/components/Navigator';
import { Provider } from 'react-redux';
import { createStore, applyMiddleware } from 'redux';
import ReduxThunk from 'redux-thunk';
import reducers from './src/reducers';
const store = createStore(
reducers,
applyMiddleware(
ReduxThunk
)
);
class App extends React.Component {
static navigationOptions = {
header: null,
headerBackground: null
};
// voteLeft = ({ Lpoll }) => {
// const createdAt = Date.now();
// this.LpollCollection.add({
// Lpoll, createdAt
// });
// };
// voteRight = ({ Rpoll }) => {
// const createdAt = Date.now();
// this.RpollCollection.add({
// Rpoll, createdAt
// });
// };
// get pollsCollection() {
// return getFB().firestore().collection("polls");
// }
// get LpollCollection() {
// return this.pollsCollection.doc(this.uid).collection("Lpoll");
// }
// get RpollCollection() {
// return this.pollsCollection.doc(this.uid).collection("Rpoll");
// }
// get uid() {
// return (getFB().auth().currentUser || {}).uid;
// }
render() {
return (
<Provider store={store}>
<Navigator />
</Provider>
);
}
}
App.shared = new App();
export default App;