Files
monitor-im-flur/src/main.tsx
2025-07-25 11:27:09 +02:00

13 lines
351 B
TypeScript

import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
// biome-ignore lint/style/noNonNullAssertion: if the root element is not found, the app should not render
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
);