import { Flex, Space } from 'antd'; import classNames from 'classnames'; import { Handle, NodeProps, Position } from 'reactflow'; import { Operator } from '../../constant'; import { NodeData } from '../../interface'; import OperatorIcon from '../../operator-icon'; import NodeDropdown from './dropdown'; import styles from './index.less'; // TODO: do not allow other nodes to connect to this node export function BeginNode({ id, data, selected }: NodeProps) { return (
{id}
); }