| 10 | import 'katex/dist/katex.min.css'; |
| 11 | |
| 12 | interface MarkdownProps { |
| 13 | content: string; |
| 14 | } |
| 15 | |
| 16 | const Markdown: React.FC<MarkdownProps> = ({ content }) => { |
| 17 | // Define markdown components |
nothing calls this directly
no outgoing calls
no test coverage detected