aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/graph/GraphArea.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/graph/GraphArea.tsx')
-rw-r--r--subprojects/frontend/src/graph/GraphArea.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/frontend/src/graph/GraphArea.tsx b/subprojects/frontend/src/graph/GraphArea.tsx
index 32147d92..a1a741f3 100644
--- a/subprojects/frontend/src/graph/GraphArea.tsx
+++ b/subprojects/frontend/src/graph/GraphArea.tsx
@@ -10,7 +10,7 @@ import ZoomCanvas from './ZoomCanvas';
10export default function GraphArea(): JSX.Element { 10export default function GraphArea(): JSX.Element {
11 return ( 11 return (
12 <ZoomCanvas> 12 <ZoomCanvas>
13 <DotGraphVisualizer /> 13 {(fitZoom) => <DotGraphVisualizer fitZoom={fitZoom} />}
14 </ZoomCanvas> 14 </ZoomCanvas>
15 ); 15 );
16} 16}