const copyToClipboard = (text, setPopup) => { navigator .clipboard.writeText(text) .then(() => { setPopup({ content: 'Note content was copied to clipboard', time: 2000, }) }) .catch(() => { setPopup({ content: 'Could not copy to clipboard', time: 2000, error: true }) }) } export default copyToClipboard