| 2 | import ReactMarkdown from "react-markdown"; |
| 3 | |
| 4 | interface MarkdownRendererProps { |
| 5 | url: string; |
| 6 | } |
| 7 | |
| 8 | function MarkdownRenderer(props: MarkdownRendererProps) { |
| 9 | const [markdown, setMarkdown] = useState<string>(""); |
nothing calls this directly
no outgoing calls
no test coverage detected