import TeX from "@matejmazur/react-katex"; import { cn } from "@/lib/utils"; import "katex/dist/katex.min.css"; interface Props { content: string; block?: boolean; } const Math: React.FC = ({ content, block }: Props) => { return ; }; export default Math;