#
Junjie
2024-03-13 7049a9a623d3eb4cf589ad07f42db0a483df71ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React, { useRef, useEffect, useState } from "react";
import { GraphDrawerNode } from "./Drawer/GraphDrawerNode";
import { GraphDrawerEdge } from "./Drawer/GraphDrawerEdge";
import { GraphDrawerCrn } from "./Drawer/GraphDrawerCrn";
import './css/GrapDrawer.less';
 
export const GraphDrawer = ({ graphRef, isReady }) => {
 
    return (
        <>
            <GraphDrawerNode graphRef={graphRef} isReady={isReady} />
            <GraphDrawerEdge graphRef={graphRef} isReady={isReady} />
            <GraphDrawerCrn graphRef={graphRef} isReady={isReady} />
        </>
    );
}