import Modal from '@mui/material/Modal' import React from 'react' interface ICopyMessageModalProps { showCopyModal: boolean; onClose: () => void; } export const CopyMessageModal = (props: ICopyMessageModalProps) => { const { showCopyModal = false, onClose } = props return (
Copied to your clipboard! Now paste your link in a Snapchat message, your Instagram bio, Whatsapp, Facebook or a text :)
) }