From 3cc6d3a0f38cfbcdaa7756e1d176c50f60568fd7 Mon Sep 17 00:00:00 2001 From: Entkenntnis Date: Thu, 11 Apr 2024 10:40:40 +0200 Subject: [PATCH] feat: latex builder --- apps/web/src/components/math-skills/utils/math-builder.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/web/src/components/math-skills/utils/math-builder.tsx b/apps/web/src/components/math-skills/utils/math-builder.tsx index d47770b970..56cf36b091 100644 --- a/apps/web/src/components/math-skills/utils/math-builder.tsx +++ b/apps/web/src/components/math-skills/utils/math-builder.tsx @@ -1,3 +1,5 @@ +import { StaticMath } from '@editor/plugins/text/static-components/static-math' + import { cn } from '@/helper/cn' export function buildFrac( @@ -55,6 +57,10 @@ export function buildVec2( ) } +export function buildLatex(src: string) { + return +} + export function buildBlock( color: 'gray' | 'green' | 'orange', x: JSX.Element | string