|  |  | 
 |  |  | import { GraphDrawerNode } from "./Drawer/GraphDrawerNode"; | 
 |  |  | import { GraphDrawerEdge } from "./Drawer/GraphDrawerEdge"; | 
 |  |  | import { GraphDrawerCrn } from "./Drawer/GraphDrawerCrn"; | 
 |  |  | import { GraphDrawerDevp } from "./Drawer/GraphDrawerDevp"; | 
 |  |  | import './css/GrapDrawer.less'; | 
 |  |  |  | 
 |  |  | export const GraphDrawer = ({ graphRef, isReady }) => { | 
 |  |  | 
 |  |  |             <GraphDrawerNode graphRef={graphRef} isReady={isReady} /> | 
 |  |  |             <GraphDrawerEdge graphRef={graphRef} isReady={isReady} /> | 
 |  |  |             <GraphDrawerCrn graphRef={graphRef} isReady={isReady} /> | 
 |  |  |             <GraphDrawerDevp graphRef={graphRef} isReady={isReady} /> | 
 |  |  |         </> | 
 |  |  |     ); | 
 |  |  | } |