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