Refactoring all nodes functionality into their own files, create a modular framework for the visual programming. #21

Merged
9828273 merged 15 commits from refactor/node-encapsulation into dev 2025-11-20 15:00:02 +00:00
Showing only changes of commit 1f70ebd799 - Show all commits

View File

@@ -73,8 +73,6 @@ function addNode(nodeType: keyof typeof NodeTypes, position: XYPosition) {
position,
data: {...defaultData}
}
console.log("Tried to add node");
setNodes([...nodes, newNode]);
}