#
Junjie
2025-07-06 0d04bc5d8080b82338302fba0a59fccff2eaedfc
zy-asrs-flow/src/components/Flow/GraphDrawer.jsx
@@ -4,6 +4,7 @@
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 }) => {
@@ -15,6 +16,7 @@
            <GraphDrawerCrn graphRef={graphRef} isReady={isReady} />
            <GraphDrawerDevp graphRef={graphRef} isReady={isReady} />
            <GraphDrawerShuttle graphRef={graphRef} isReady={isReady} />
            <GraphDrawerLift graphRef={graphRef} isReady={isReady} />
        </>
    );
}