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