import ReactMarkdown, { type Components } from "react-markdown"; import remarkGfm from "remark-gfm"; const markdownComponents: Components = { a: ({ children, href, ...props }) => ( {children} ), table: ({ children }) => (
{children}
), }; export function ChatMessageContent({ text }: { text: string }) { return (
{text}
); }