Created
July 18, 2022 09:10
-
-
Save sangwin/5183d5c5c3cf1d572d31bfe8d713e5c0 to your computer and use it in GitHub Desktop.
Copy a text to clipboard
This file contains hidden or 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
const copyToClipboard = (text) => navigator.clipboard?.writeText && navigator.clipboard.writeText(text); | |
copyToClipboard("Hello World!"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment