From ecfbb5c0ff41333363c7615d4a51acecc06c72a3 Mon Sep 17 00:00:00 2001 From: Yuren Hao <97327730+YurenHao0426@users.noreply.github.com> Date: Wed, 6 Aug 2025 02:11:57 -0700 Subject: fix: handle namespace and add proxy support --- src/App.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/App.tsx (limited to 'src/App.tsx') diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..9687afc --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,12 @@ +import Graph from "./components/Graph"; +import { useCourseData } from "./hooks/useCourseData"; + +export default function App() { + const catalog = useCourseData("/data/catalog_2025_fall.json"); + return ( + <> +

UIUC Course Prerequisite Graph

+ + + ); +} -- cgit v1.2.3