Skip to content

Commit 2173ae6

Browse files
author
Martarion-Code
committed
change import path for jsonVisNode in app component
1 parent 7db7d1e commit 2173ae6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/App.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import {
88
useReactFlow,
99
Panel,
1010
} from "reactflow";
11-
import JsonVisNode from "./Custom-Nodes/jsonVisNode";
11+
import JsonVisNode from "./Custom-Nodes/JsonVisNode";
12+
import JsonVisEdge from "./Custom Edges/JsonVisEdge";
1213

1314
// we define the nodeTypes outside of the component to prevent re-renderings
1415
// you could also use useMemo inside the component
@@ -30,7 +31,7 @@ import convertJsonToTree from "./utils/convertJsonToTree";
3031
import convertTreeToNodes from "./utils/convertTreeToNodes";
3132

3233
import "reactflow/dist/style.css";
33-
import JsonVisEdge from "./Custom Edges/JsonVisEdge";
34+
3435

3536
/**
3637
* Select which variable or func that will get used from store

0 commit comments

Comments
 (0)