| 3 | const { marked } = require('marked'); |
| 4 | |
| 5 | interface MarkdownProps { |
| 6 | content: string; |
| 7 | } |
| 8 | |
| 9 | export default function Markdown({ content }: MarkdownProps) { |
| 10 | const html = marked(content); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…