import React, { useState, useEffect } from "react"; import { StyleSheet, View } from "react-native"; import MapView, { Marker } from "react-native-maps"; import colors from "../config/colors"; import useLocation from "../hooks/useLocation"; import useMarkers from "../hooks/selectFromDB"; function MapFeedScreen(props) { const location = useLocation(); const markers = useMarkers(); console.log(markers.markers); return ( {markers.markers.map((val) => { return ; })} ); } const styles = StyleSheet.create({ container: { backgroundColor: colors.black, flex: 1, }, mapStyle: { position: "absolute", top: 0, left: 0, right: 0, bottom: 0, }, }); export default MapFeedScreen;