import React from "react"; import { Flex, Image as UIImage } from "theme-ui"; import AddIcon from "../../icons/AddIcon"; function MapSelect({ maps, onMapAdd }) { const tileProps = { m: 2, sx: { width: "150px", height: "150px", borderRadius: "4px", justifyContent: "center", alignItems: "center", }, bg: "muted", }; function tile(map) { return ( ); } return ( {maps.map(tile)} ); } export default MapSelect;