import React from 'react'; interface ReactMarkdownProps { children: string; [key: string]: any; } const ReactMarkdown: React.FC = ({ children }) => { return
{children}
; }; export default ReactMarkdown;