import { TypographyStylesProvider } from "@mantine/core"; import Markdown from "react-markdown"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import syntaxHighlighterStyle from "react-syntax-highlighter/dist/esm/styles/prism/one-dark"; const FormattedMarkdown = ({ children }: { children: string }) => { return ( ) : ( {children} ); }, }} > {children} ); }; export default FormattedMarkdown;