improvements

This commit is contained in:
2026-03-07 22:37:11 +01:00
parent 5b07bd4887
commit 4c33d1095d
9 changed files with 268 additions and 94 deletions

View File

@@ -5,6 +5,8 @@ export type FlowContextValue = {
setNodes: (updater: any) => void
edges: any[]
setEdges: (updater: any) => void
renamingNodeId: string | null
setRenamingNodeId: (id: string | null) => void
}
const FlowContext = React.createContext<FlowContextValue | null>(null)