| 9 | import { Id } from "@/types"; |
| 10 | |
| 11 | interface Props { |
| 12 | language: string; |
| 13 | value: string; |
| 14 | messageId: Id; |
| 15 | wrapLongLines?: boolean; |
| 16 | } |
| 17 | |
| 18 | export const CodeBlock = (props: Props) => { |
| 19 | const { language, value, messageId, wrapLongLines } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected