import { StyleSheet, Text, View } from 'react-native' import React from 'react' import { GooglePlacesAutocomplete } from 'react-native-google-places-autocomplete'; const mapApiKey = process.env.EXPO_PUBLIC_GOOGLE_PLACE_API_KEY; const HomeSearch = ({searchedLocation}) => { return ( { searchedLocation(details?.geometry?.location) }} query={{ key: mapApiKey, language: 'en', }} onFail={error => console.error(error)} /> ) } export default HomeSearch const styles = StyleSheet.create({})