#
Junjie
2025-07-06 0d04bc5d8080b82338302fba0a59fccff2eaedfc
zy-asrs-flow/src/components/Flow/GraphDrawer.jsx
@@ -2,6 +2,9 @@
import { GraphDrawerNode } from "./Drawer/GraphDrawerNode";
import { GraphDrawerEdge } from "./Drawer/GraphDrawerEdge";
import { GraphDrawerCrn } from "./Drawer/GraphDrawerCrn";
import { GraphDrawerDevp } from "./Drawer/GraphDrawerDevp";
import { GraphDrawerShuttle } from "./Drawer/GraphDrawerShuttle";
import { GraphDrawerLift } from "./Drawer/GraphDrawerLift";
import './css/GrapDrawer.less';
export const GraphDrawer = ({ graphRef, isReady }) => {
@@ -11,6 +14,9 @@
            <GraphDrawerNode graphRef={graphRef} isReady={isReady} />
            <GraphDrawerEdge graphRef={graphRef} isReady={isReady} />
            <GraphDrawerCrn graphRef={graphRef} isReady={isReady} />
            <GraphDrawerDevp graphRef={graphRef} isReady={isReady} />
            <GraphDrawerShuttle graphRef={graphRef} isReady={isReady} />
            <GraphDrawerLift graphRef={graphRef} isReady={isReady} />
        </>
    );
}