import ReactMarkdown from 'react-markdown' import remarkGfm from 'remark-gfm' import { cn } from '@/lib/utils' import { debugProps } from '@/lib/debug' interface MarkdownProps { children: string className?: string } export function Markdown({ children, className }: MarkdownProps) { return (