summaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorblackhao <13851610112@163.com>2025-08-22 02:51:50 -0500
committerblackhao <13851610112@163.com>2025-08-22 02:51:50 -0500
commit4aab4087dc97906d0b9890035401175cdaab32d4 (patch)
tree4e2e9d88a711ec5b1cfa02e8ac72a55183b99123 /src/App.tsx
parentafa8f50d1d21c721dabcb31ad244610946ab65a3 (diff)
2.0
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/App.tsx b/src/App.tsx
deleted file mode 100644
index 9687afc..0000000
--- a/src/App.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import Graph from "./components/Graph";
-import { useCourseData } from "./hooks/useCourseData";
-
-export default function App() {
- const catalog = useCourseData("/data/catalog_2025_fall.json");
- return (
- <>
- <h1 style={{ textAlign: "center" }}>UIUC Course Prerequisite Graph</h1>
- <Graph catalog={catalog} />
- </>
- );
-}