Skip to content

Commit 43660b6

Browse files
committed
Remove unused interfaces
* Will add them back eventually, they are just currently prohibiting GitHub pages builds from finishing.
1 parent 935c895 commit 43660b6

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/pages/GraphVisualiser.tsx

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
11
import React from 'react';
22

3-
interface Node {
4-
id: string;
5-
label: string;
6-
}
7-
8-
interface Edge {
9-
source: string;
10-
target: string;
11-
}
12-
13-
interface Graph {
14-
nodes: Node[];
15-
edges: Edge[];
16-
}
17-
18-
interface GraphVisualiserProps {
19-
graph: Graph;
20-
}
21-
223
const GraphVisualiser: React.FC = () => {
234

245
let graph = {

0 commit comments

Comments
 (0)