({ value }: Props)
| 7 | } |
| 8 | |
| 9 | export default function InlineCode({ value }: Props) { |
| 10 | const input = value.trim(); |
| 11 | const content = decodeHTML(input); |
| 12 | return <Code content={content} inline />; |
| 13 | } |
nothing calls this directly
no test coverage detected