import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import { City } from '../data/stub'; type infoProps = { city : City } const CityInfo = ( infoProps ) => { return ( City: {infoProps.city.name} {infoProps.city.latitude} {infoProps.city.longitude} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', justifyContent: 'space-between', paddingHorizontal: 16, marginBottom: 16, backgroundColor: '#eec', padding: 5 }, column: { flex: 1, }, label: { fontSize: 16, fontWeight: 'bold', marginBottom: 8, }, value: { fontSize: 14, }, }); export default CityInfo;