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