From 1b33274e32a2d5ce85578fa04b345838be28fa9c Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Fri, 26 Dec 2025 03:18:19 +0000 Subject: [PATCH] code: tsx,nextjs,frontends (3 files) --- frontends/nextjs/src/components/LuaBlocksEditor.tsx | 1 + frontends/nextjs/src/components/LuaEditor.tsx | 1 + frontends/nextjs/src/components/WorkflowEditor.tsx | 1 + 3 files changed, 3 insertions(+) create mode 100644 frontends/nextjs/src/components/LuaBlocksEditor.tsx create mode 100644 frontends/nextjs/src/components/LuaEditor.tsx create mode 100644 frontends/nextjs/src/components/WorkflowEditor.tsx diff --git a/frontends/nextjs/src/components/LuaBlocksEditor.tsx b/frontends/nextjs/src/components/LuaBlocksEditor.tsx new file mode 100644 index 000000000..5ec1372a7 --- /dev/null +++ b/frontends/nextjs/src/components/LuaBlocksEditor.tsx @@ -0,0 +1 @@ +export { LuaBlocksEditor } from './editors/lua/LuaBlocksEditor' diff --git a/frontends/nextjs/src/components/LuaEditor.tsx b/frontends/nextjs/src/components/LuaEditor.tsx new file mode 100644 index 000000000..6f1dbefff --- /dev/null +++ b/frontends/nextjs/src/components/LuaEditor.tsx @@ -0,0 +1 @@ +export { LuaEditor } from './editors/lua/LuaEditor' diff --git a/frontends/nextjs/src/components/WorkflowEditor.tsx b/frontends/nextjs/src/components/WorkflowEditor.tsx new file mode 100644 index 000000000..2a6a900b5 --- /dev/null +++ b/frontends/nextjs/src/components/WorkflowEditor.tsx @@ -0,0 +1 @@ +export { WorkflowEditor } from './workflow/WorkflowEditor'