|
@@ -4,19 +4,9 @@ import { StyleSheet, Text, View } from 'react-native';
|
4
|
4
|
// importing other files
|
5
|
5
|
import Navigator from './routes/homeStack';
|
6
|
6
|
|
7
|
|
-
|
8
|
|
- // here we want to display each mocion in a flatlist
|
9
|
|
- // it's supposed to be like buttons. Once clicked it would let you vote inside
|
|
7
|
+export default function App() {
|
10
|
8
|
return (
|
11
|
|
- <Navigator />
|
12
|
|
- );
|
|
9
|
+ <Navigator />
|
|
10
|
+);
|
13
|
11
|
}
|
14
|
12
|
|
15
|
|
-const styles = StyleSheet.create({
|
16
|
|
- container: {
|
17
|
|
- flex: 1,
|
18
|
|
- backgroundColor: '#fff',
|
19
|
|
- alignItems: 'center',
|
20
|
|
- justifyContent: 'center',
|
21
|
|
- },
|
22
|
|
-});
|