| 19 | import TreeView from "src/components/TreeView" |
| 20 | |
| 21 | interface Props { |
| 22 | graphManager: GraphManager; |
| 23 | weightServiceManager: WeightServiceManager; |
| 24 | componentName: string; |
| 25 | } |
| 26 | |
| 27 | export const GraphBrowser = ({ graphManager, weightServiceManager, componentName }: Props) => { |
| 28 | const graph = useMemo(() => componentName && graphManager.getComponent(componentName), [ |
nothing calls this directly
no outgoing calls
no test coverage detected