From 80e315ec800feeb91b858c2ad7816071725eeaee Mon Sep 17 00:00:00 2001 From: Yuren Hao <97327730+YurenHao0426@users.noreply.github.com> Date: Wed, 6 Aug 2025 02:11:42 -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 ( + <> +