diff --git a/src/app/components/MapDataMenu.js b/src/app/components/MapDataMenu.js index b2ca053..d1d4d4a 100644 --- a/src/app/components/MapDataMenu.js +++ b/src/app/components/MapDataMenu.js @@ -151,7 +151,7 @@ function Border() { height: 2, borderRadius: 2, paddingHorizontal: 16, - // backgroundColor: colors.separatorGray, + backgroundColor: colors.separatorGray, }} /> ); @@ -296,15 +296,34 @@ function DataMenuBody({ setShowModal }) { ); } +function ModalOpenBtn({setShowModal}) { + return ( + setShowModal()} + > + + VISUALIZAR DADOS NO MAPA + + + ); +} + export default function MapDataMenu(props) { const [showModal, setShowModal] = useState(null); return ( -