diff --git a/src/IntegratorNode.jsx b/src/IntegratorNode.jsx index 4c10ff3c..f8d810a1 100644 --- a/src/IntegratorNode.jsx +++ b/src/IntegratorNode.jsx @@ -1,7 +1,11 @@ -import React from 'react'; -import { Handle } from '@xyflow/react'; +import { Handle, useNodeConnections } from '@xyflow/react'; + export default function IntegratorNode({ data }) { + const connections = useNodeConnections({ + handleType: "target", + }); + return (
{data.label}
- +
);