blob: f67fbc1cb26793f513c9639efe14059cadf73923 [file] [log] [blame]
giod0026612025-05-08 13:00:36 +00001import "./index.css";
2import App from "./App.tsx";
3import { createRoot } from "react-dom/client";
4import { StrictMode } from "react";
gio5f2f1002025-03-20 18:38:48 +04005
giod0026612025-05-08 13:00:36 +00006createRoot(document.getElementById("root")!).render(
7 <StrictMode>
8 <App />
9 </StrictMode>,
10);