| 3 | import { Highlight, themes } from "prism-react-renderer" |
| 4 | |
| 5 | interface CodeBlockProps { |
| 6 | code: string |
| 7 | language?: "xml" | "json" |
| 8 | } |
| 9 | |
| 10 | export function CodeBlock({ code, language = "xml" }: CodeBlockProps) { |
| 11 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected