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