// @flow import * as React from "react"; import { View } from "react-native"; import MapView from "react-native-maps"; import { viewStyles } from "../../styles/sharedComponents/map"; type Props = { latitude: number, longitude: number } // this component will need a fallback to another map library // for people who don't use GMaps (i.e. users in China) const Map = ( { latitude, longitude }: Props ): React.Node => ( ); export default Map;