import Button from './Button'
import Modal from './Modal'
function CreateInviteModal({ isOpen, onClose, inviteCode }) {
const copyInviteToClipboard = () => {
window.electronAPI.copyToClipboard(inviteCode).then(() => {
onClose()
})
}
const copyButton = (
)
return (
{inviteCode ? (
<>
This is an invite code that you can send to a friend to collaborate on
this drawing with you.