| 3 | import { useState } from "react" |
| 4 | |
| 5 | interface CopyButtonProps { |
| 6 | code: string |
| 7 | className?: string |
| 8 | } |
| 9 | |
| 10 | export const CopyButton = ({ code, className }: CopyButtonProps) => { |
| 11 | const [copied, setCopied] = useState(false) |
nothing calls this directly
no outgoing calls
no test coverage detected