import ReactMarkdown from "react-markdown" import remarkGfm from "remark-gfm" import rehypeHighlight from "rehype-highlight" export function MarkdownBlock({ content }: { content: string }) { return (
, }} > {content}
) }