괄호 앞 음수 분배 스테이지 추가

This commit is contained in:
2026-05-23 12:15:53 +09:00
parent 1ed0611b9d
commit 5ee33bf0d3
13 changed files with 1644 additions and 31 deletions
+15
View File
@@ -0,0 +1,15 @@
"use client";
import { BlockMath, InlineMath } from "react-katex";
interface KatexRendererProps {
latex: string;
displayMode?: boolean;
}
export default function KatexRenderer({
latex,
displayMode = false,
}: KatexRendererProps) {
return displayMode ? <BlockMath math={latex} /> : <InlineMath math={latex} />;
}