({
children,
className,
}: {
children: React.ReactNode;
className?: string;
})
| 1 | import { type JSX } from "react"; |
| 2 | |
| 3 | export function Code({ |
| 4 | children, |
| 5 | className, |
| 6 | }: { |
| 7 | children: React.ReactNode; |
| 8 | className?: string; |
| 9 | }): JSX.Element { |
| 10 | return <code className={className}>{children}</code>; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected