import React, { CSSProperties } from 'react'; import Handle from '../../components/Handle'; import { NodeProps } from '../../types'; const nodeStyles: CSSProperties = { background: '#9999ff', padding: 10, borderRadius: 5, width: 150, }; export default ({ data, style }: NodeProps) => (
{data.label}
);