import Markdown from "react-markdown"; import remarkGfm from "remark-gfm"; import { cn } from "../lib/utils"; import { useTheme } from "../context/ThemeContext"; interface MarkdownBodyProps { children: string; className?: string; } export function MarkdownBody({ children, className }: MarkdownBodyProps) { const { theme } = useTheme(); return (