import React, { useEffect, useRef } from 'react'; interface GraphViewProps { cyRef: React.MutableRefObject; onZoomIn: () => void; onZoomOut: () => void; onFitView: () => void; } export const GraphView: React.FC = ({ cyRef, onZoomIn, onZoomOut, onFitView, }) => { return (
); };