import React from 'react'; import {View, StyleSheet} from 'react-native'; import MapView, {PROVIDER_GOOGLE} from 'react-native-maps'; export default function Map({lat, long, showsUserLocation,latDelta,longDelta,children}) { return ( {children} ); } const styles = StyleSheet.create({ mapStyle: { flex: 1, }, });