Created
December 16, 2021 14:04
-
-
Save OtayNacef/42b75c1f4aeea8dfbff85f7258ab6fde to your computer and use it in GitHub Desktop.
typescript function to 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
export const copyToClipboard = (text: string) => { | |
navigator.clipboard.writeText(text); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment