()
| 7 | const [copied,setCopied] = useState(false); |
| 8 | |
| 9 | const handleCopy = ()=>{ |
| 10 | window.navigator.clipboard.writeText(url); |
| 11 | setCopied((p)=>true); |
| 12 | } |
| 13 | |
| 14 | return ( |
| 15 | <div className={`flex flex-col items-center gap-y-4 ${className}`}> |
nothing calls this directly
no outgoing calls
no test coverage detected