import React, { FC } from 'react'; import { ConnectionLineComponentProps } from 'reactflow'; const ConnectionLine: FC = ({ fromX, fromY, toX, toY }) => { return ( ); }; export default ConnectionLine;