mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
"use client";
|
|
|
|
import { EquationPlugin, InlineEquationPlugin } from "@platejs/math/react";
|
|
|
|
import { EquationElement, InlineEquationElement } from "@/components/ui/equation-node";
|
|
|
|
export const MathKit = [
|
|
EquationPlugin.withComponent(EquationElement),
|
|
InlineEquationPlugin.withComponent(InlineEquationElement),
|
|
];
|