import React, { useRef } from "react"; import { IconButton } from "theme-ui"; function AddMapButton({ handleMapChange }) { const fileInputRef = useRef(); function handleIconClicked() { if (fileInputRef.current) { fileInputRef.current.click(); } } return ( <> ); } export default AddMapButton;