feat: added a custom start node

Defined a basic start node; it does not contain any further functionality but does provide a basis for implementing future custom nodes.

ref: N25B-114
This commit is contained in:
JGerla
2025-09-30 16:13:48 +02:00
parent 10e5db057b
commit e098ffebd6
4 changed files with 40 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import VisualProgrammingUI from "./VisualProgrammingUI/VisProgUI.tsx";
import VisualProgrammingUI from "./visualProgrammingUI/VisProgUI.tsx";
createRoot(document.getElementById('root')!).render(
<StrictMode>