import styles from "../EntranceModal/EntranceModal.module.css"; import React from "react"; import PropTypes from "prop-types"; import MapShape from "../../../scripts/base/MapShape.js"; export default function ModalSelectConnections2({shapeInfo,updateModalData,addConnection,availableShapes}) { console.log("shapes modal",availableShapes) return (
) } ModalSelectConnections2.propTypes = { shapeInfo: PropTypes.object, updateModalData: PropTypes.func, addConnection: PropTypes.func, }