aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/main.tsx
blob: fcd9b6402b1d01c3ed17a50d88abe9f0160a5490 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";

// biome-ignore lint/style/noNonNullAssertion: root element is guaranteed to exist
createRoot(document.getElementById("root")!).render(
	<StrictMode>
		<App />
	</StrictMode>,
);