From e7b255805831192d7e51c62b94ccf606efcf347f Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 21 Oct 2025 03:51:03 +0000 Subject: [PATCH] =?UTF-8?q?=E6=8C=BA=E5=A5=BD=E7=9A=84=20=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E8=AF=86=E5=88=AB=E6=96=87=E4=BB=B6=E5=A4=B9=E4=B8=8B?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/demo/index.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dev/demo/index.tsx diff --git a/dev/demo/index.tsx b/dev/demo/index.tsx new file mode 100644 index 0000000..e349916 --- /dev/null +++ b/dev/demo/index.tsx @@ -0,0 +1,19 @@ +import ReactDOM from "react-dom/client"; +import reportWebVitals from "./reportWebVitals"; + +import "./style/classes.css"; +// @ts-ignore +import "./style/index.css"; +// @ts-ignore +import "./App.css"; +import "./style/applies.css"; + +// @ts-ignore +import App from "./App"; + +const root = ReactDOM.createRoot( + document.getElementById("root") as HTMLElement, +); + +root.render(); +reportWebVitals();