From 2434b68db4d8f86a2d614dc096a2c2cadcb38a91 Mon Sep 17 00:00:00 2001 From: Yuren Hao <97327730+YurenHao0426@users.noreply.github.com> Date: Wed, 6 Aug 2025 02:11:54 -0700 Subject: fix: handle namespace and add proxy support --- src/main.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/main.tsx (limited to 'src/main.tsx') diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 0000000..3fd3a69 --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,9 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import App from "./App"; + +ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( + + + +); -- cgit v1.2.3