1 async function copyToClipboard(text){ 2 await navigator.clipboard.writeText(text); 3 }

Linkerin