import ReactMarkdown from 'react-markdown' import remarkGfm from 'remark-gfm' import { cn } from '@/lib/utils' interface MarkdownProps { content: string className?: string } // Renders a Markdown string with GitHub-flavoured extensions (tables, task // lists, strikethrough). Used in Timeline comments and NewBugPage preview. export function Markdown({ content, className }: MarkdownProps) { return ( {content} ) }