aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/main.tsx
blob: 81da3460b0b1152941e22664426723efc0f935ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./styles.css";

ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
);