Created
January 27, 2022 17:25
-
-
Save arinaldi/b6ba17a09be61a0fafc25eb02bfbe773 to your computer and use it in GitHub Desktop.
Copy text to clipboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function copy() { | |
await navigator.clipboard.writeText(code); | |
setCopyText('✅ Copied!'); | |
setTimeout(() => { | |
setCopyText('Copy'); | |
}, 1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment