visualizer: make tree visualizer the default

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-11-04 22:29:53 +01:00
parent cbd836aef4
commit f0fb3fac14
@@ -36,18 +36,18 @@ export function AppVisualizerPage() {
const tabs = useMemo(
() => [
{
id: 'graph',
path: 'graph',
label: 'Graph',
element: <GraphVisualizer tree={tree} />,
},
{
id: 'tree',
path: 'tree',
label: 'Tree',
element: <TreeVisualizer tree={tree} />,
},
{
id: 'graph',
path: 'graph',
label: 'Graph',
element: <GraphVisualizer tree={tree} />,
},
{
id: 'text',
path: 'text',