()
| 117 | }, [copied]); |
| 118 | |
| 119 | const handleCopy = async () => { |
| 120 | await navigator.clipboard.writeText(text); |
| 121 | setCopied(true); |
| 122 | setTimeout(() => setCopied(false), 2000); |
| 123 | }; |
| 124 | |
| 125 | return ( |
| 126 | <button |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…