"use client"; import { InlineMath as KInline, BlockMath as KBlock } from "react-katex"; import { cn } from "@/lib/utils"; export function M({ children, className }: { children: string; className?: string }) { return ( ); } export function MBlock({ children, className, }: { children: string; className?: string; }) { return (