import ReactMarkdown from "react-markdown"; import rehypeHighlight from "rehype-highlight"; import remarkGfm from "remark-gfm"; import { Prose } from "../Prose"; export const Markdown = ({ markdownContent, ...props }) => { return ( <> {markdownContent} ); };