import React from "react"; import type { JSONContent } from "@tiptap/react"; import { richTextToSafeHtml } from "@/lib/richtext"; export default function RichText({ doc, className, }: { doc: JSONContent; className?: string; }) { const html = richTextToSafeHtml(doc); return (
); }