import type { AnchorHTMLAttributes, HTMLAttributes } from "react"; import { Fragment, createElement } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; import rehypeReact from "rehype-react"; import remarkParse from "remark-parse"; import remarkRehype from "remark-rehype"; import { unified } from "unified"; export function ProcessMessage({ value }: { value: string }) { const result = unified() .use(remarkParse) .use(remarkRehype) .use(rehypeReact, { createElement, Fragment, jsx, jsxs, components: { ul: (props: HTMLAttributes) => { return (