import ReactMarkdown from "react-markdown"; import remarkGfm from "remark-gfm"; import { type LLMOutputComponent } from "@llm-ui/react"; // Customize this component with your own styling export const MarkdownComponent: LLMOutputComponent = ({ blockMatch }) => { const markdown = blockMatch.output; return {markdown}; };