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.

22 lines
541 B

import { StatusBar } from 'expo-status-bar';
import { SafeAreaView, StyleSheet, Text, View } from 'react-native';
import CityList from './CityList';
import { useSafeAreaInsets, SafeAreaProvider } from 'react-native-safe-area-context';
export default function App() {
return (
<SafeAreaProvider style={styles.container}>
<CityList/>
</SafeAreaProvider>
);
}
const styles = StyleSheet.create({
container: {
height: "100%",
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});