I want to integrate maps in my react-native app, I am using the “react-native-maps” library for that https://github.com/airbnb/react-native-maps I want to use clustering but I a
yarn add react-native-map-clustering
import {Marker} from 'react-native-maps'; import MapView from "react-native-map-clustering"; const INITIAL_REGION = { latitude: 52.5, longitude: 19.2, latitudeDelta: 8.5, longitudeDelta: 8.5, }; const App = () => ( );