mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
11 lines
320 B
TypeScript
11 lines
320 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),
|
|
];
|
|
|