Answers for "how to copy text on clipboard in react"

24

how to copy text on clipboard in react

onClick={() => {navigator.clipboard.writeText(this.state.textToCopy)}}
Posted by: Guest on April-14-2020
0

how to copy text in react

// copy text on button click  in react
    const [textArea, setTextArea] = useState("THis is text")
    
	const copyText = () => {
        navigator.clipboard.writeText(textArea);
    }
Posted by: Guest on March-11-2022

Code answers related to "how to copy text on clipboard in react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language