| 1 | import { BaseEquationPlugin, BaseInlineEquationPlugin } from "@platejs/math"; |
| 2 | |
| 3 | import { |
| 4 | EquationElementStatic, |
| 5 | InlineEquationElementStatic, |
| 6 | } from "@/components/plate/ui/equation-node-static"; |
| 7 | |
| 8 | export const BaseMathKit = [ |
| 9 | BaseInlineEquationPlugin.withComponent(InlineEquationElementStatic), |
| 10 | BaseEquationPlugin.withComponent(EquationElementStatic), |
| 11 | ]; |
| 12 |