Shivam311's picture
feat: CodeAtlas Enterprise - IBM Bob Engineering Intelligence Platform
3a7842d
Raw
History Blame Contribute Delete
487 Bytes
import ReactMarkdown from 'react-markdown';
export default function DocViewer({ content }) {
if (!content) {
return (
<div className="rounded-lg border border-white/10 bg-white/[0.03] p-8 text-center text-sm text-slate-500">
Generated documentation will appear here.
</div>
);
}
return (
<article className="markdown-body rounded-lg border border-white/10 bg-white/[0.04] p-6">
<ReactMarkdown>{content}</ReactMarkdown>
</article>
);
}