feat: Added reconnectable edges
Modified edges to support being disconnected and reconnected upon dragging their connection away from the currently connected node. ref: N25B-114
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
import { StrictMode } from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import './index.css'
|
||||
import App from './VisualProgrammingUI/VisProgUI.tsx'
|
||||
import App from './App.tsx'
|
||||
import VisualProgrammingUI from "./VisualProgrammingUI/VisProgUI.tsx";
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
<VisualProgrammingUI />
|
||||
</StrictMode>,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user