#
Junjie
2024-04-19 496daedc76e96c8245c586337482b0e74e881409
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} />
        </>
    );
}