import { Box, Label, Text } from "theme-ui"; import Modal from "../components/Modal"; function AddPartyMemberModal({ isOpen, onRequestClose, gameId, }: { isOpen: boolean; onRequestClose: any; gameId: string; }) { return ( Other people can join using the game ID {gameId} Or by using this link {window.location.href} ); } export default AddPartyMemberModal;