Skip to content

Commit

Permalink
remove... stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
finia2NA committed May 27, 2024
1 parent 4a247b1 commit 864f139
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/KanjiGraph.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GraphCanvas, GraphCanvasRef, Theme, lightTheme, useSelection } from "reagraph";
import getKanjiOrder, { KanjiNode } from "../logic/kanjiorder";
import { GraphCanvas, GraphCanvasRef, lightTheme, useSelection } from "reagraph";
import { KanjiNode } from "../logic/kanjiorder";
import { useRef } from "react";

export interface DisplayNode {
Expand All @@ -20,7 +20,7 @@ interface KanjiGraphProps {
kanjiRoot: KanjiNode;
}

const KanjiGraph = ({ kanjiNodeList, kanjiRoot }: KanjiGraphProps) => {
const KanjiGraph = ({ kanjiNodeList }: KanjiGraphProps) => {
// Data generation...

const [nodes, edges]: [DisplayNode[], DisplayEdge[]] = [[], []]
Expand Down

0 comments on commit 864f139

Please sign in to comment.