| 1 | "use client"; |
| 2 | |
| 3 | import { EquationPlugin, InlineEquationPlugin } from "@platejs/math/react"; |
| 4 | |
| 5 | import { |
| 6 | EquationElement, |
| 7 | InlineEquationElement, |
| 8 | } from "@/components/plate/ui/equation-node"; |
| 9 | |
| 10 | export const MathKit = [ |
| 11 | InlineEquationPlugin.withComponent(InlineEquationElement), |
| 12 | EquationPlugin.withComponent(EquationElement), |
| 13 | ]; |
| 14 |