()
| 12 | : 'plaintext'; |
| 13 | |
| 14 | const handleCopyCode = () => { |
| 15 | navigator.clipboard.writeText(code); |
| 16 | setShowCheck(true); |
| 17 | setTimeout(() => setShowCheck(false), 500); |
| 18 | }; |
| 19 | |
| 20 | let formattedCode; |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected