aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/graph/GraphArea.tsx
blob: 32147d92a44e1fc3d1bcb331ef0852cdb7bd9f14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import DotGraphVisualizer from './DotGraphVisualizer';
import ZoomCanvas from './ZoomCanvas';

export default function GraphArea(): JSX.Element {
  return (
    <ZoomCanvas>
      <DotGraphVisualizer />
    </ZoomCanvas>
  );
}