({ content }: MarkdownProps)
| 7 | } |
| 8 | |
| 9 | export default function Markdown({ content }: MarkdownProps) { |
| 10 | const html = marked(content); |
| 11 | |
| 12 | return ( |
| 13 | <div |
| 14 | dangerouslySetInnerHTML={{ |
| 15 | __html: html, |
| 16 | }} |
| 17 | /> |
| 18 | ); |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…