| 5 | import useCopy from '~/hooks/useCopy' |
| 6 | |
| 7 | interface CodeBoxProps { |
| 8 | color: string |
| 9 | id: number |
| 10 | code: string |
| 11 | } |
| 12 | |
| 13 | const CodeBox: FC<CodeBoxProps> = ({ color, id, code }) => { |
| 14 | const { copy, copyToClipboard } = useCopy() |
nothing calls this directly
no outgoing calls
no test coverage detected