import clsx from "clsx"; import type { FunctionComponent } from "react"; interface TextProps { html: string; className?: string; } const Prose: FunctionComponent = ({ html, className }) => { return (
); }; export default Prose;