Learn, grow and help others with BBBootstrap
Contribute us with some awesome cool snippets using HTML,CSS,JAVASCRIPT and BOOTSTRAP

copy to clipboard items using react useState Hook with the following code
  var maincode = "Text to be copied";
  const [codeText,SetCodeText] = useState("copy");
  const CopyCode = () =>{
    navigator.clipboard.writeText(maincode);
    SetCodeText("copied");
    setTimeout(()=>{
        SetCodeText("copy");    
    },2000);
  }