Skip to content

Instantly share code, notes, and snippets.

@OtayNacef
Created December 16, 2021 14:04
Show Gist options
  • Save OtayNacef/42b75c1f4aeea8dfbff85f7258ab6fde to your computer and use it in GitHub Desktop.
Save OtayNacef/42b75c1f4aeea8dfbff85f7258ab6fde to your computer and use it in GitHub Desktop.
typescript function to copy text to clipboard
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