-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
26 lines (24 loc) · 658 Bytes
/
Copy pathApp.js
File metadata and controls
26 lines (24 loc) · 658 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
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { Provider } from 'react-redux';
import store from './features/stores';
import Navigation from './navigation/navigation';
export default function App() {
return (
<SafeAreaProvider>
<Provider store={store} >
<View style={styles.container}>
<Navigation />
<StatusBar style="auto" />
</View>
</Provider>
</SafeAreaProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
});