/** * Markdown renders agent text (GitHub-flavoured: tables, task lists, ...). * Kept as the single markdown entry point so styling and plugins stay * consistent everywhere agent content appears. * * @example * */ import ReactMarkdown from "react-markdown"; import remarkGfm from "remark-gfm"; export function Markdown({ text }: { text: string }) { return (
{text}
); }