import React from "react"; import ReactMarkdown from "react-markdown"; import gfm from "remark-gfm"; import { MarkdownFieldProps } from "../types"; /** * This field lets you display markdown content. It supports {@link https://github.github.com/gfm/ GitHub Flavored Markdown}. * * @see {@link https://refine.dev/docs/api-reference/mantine/components/fields/markdown} for more details. */ export const MarkdownField: React.FC = ({ value = "", ...rest }) => { return ( {value} ); };