You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
782 B
31 lines
782 B
import { StatusBar } from 'expo-status-bar';
|
|
import React from 'react';
|
|
import { SafeAreaView, StyleSheet, Text, View } from 'react-native';
|
|
import { useSafeAreaInsets, SafeAreaProvider } from 'react-native-safe-area-context';
|
|
import TabNavigation from './navigation/TabNavigation';
|
|
import CityList from './screens/CityList';
|
|
import store from "./redux/store";
|
|
import { Provider } from 'react-redux';
|
|
|
|
|
|
|
|
export default function App() {
|
|
return (
|
|
<Provider store={store}>
|
|
<SafeAreaProvider style={styles.container}>
|
|
<TabNavigation/>
|
|
</SafeAreaProvider>
|
|
</Provider>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
height: "100%",
|
|
backgroundColor: '#fff',
|
|
//alignItems: 'center',
|
|
//justifyContent: 'center',
|
|
},
|
|
});
|