SignalMod / frontend /src /main.tsx
Mirae Kang
feat: update UI using VITE+React without streamlit, #22
f0b240d
raw
history blame
230 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);