import ReactMarkdown from 'react-markdown'; export default function DocViewer({ content }) { if (!content) { return (
Generated documentation will appear here.
); } return (
{content}
); }