/* * @Author: ZhaoYing * @Date: 2026-02-09 18:31:30 * @Last Modified by: ZhaoYing * @Last Modified time: 2026-03-30 11:55:10 */ import { Flex } from 'antd'; import type { ReactShapeConfig } from '@antv/x6-react-shape'; const AddNode: ReactShapeConfig['component'] = ({ node }) => { const data = node?.getData() || {}; return (
{data.label}
); }; export default AddNode;