import { MarkdownContent } from "@/components/markdown-content"; export interface IRichText { __component: "shared.rich-text"; id: number; body: string; } export function RichText({ body }: Readonly) { return ; }