zy-asrs-flow/src/pages/home/react-node/node2.jsx
New file @@ -0,0 +1,15 @@ import { NsGraph } from '@antv/xflow' import React from 'react' import { useAppContext } from '@antv/xflow' import './node2.less' const Node2 = props => { const ctx = useAppContext() return ( <div className="node2-container"> <div>{'React节点2'}</div> </div> ) } export default Node2