| gio | d002661 | 2025-05-08 13:00:36 +0000 | [diff] [blame] | 1 | import "./index.css"; |
| 2 | import App from "./App.tsx"; | ||||
| 3 | import { createRoot } from "react-dom/client"; | ||||
| 4 | import { StrictMode } from "react"; | ||||
| gio | 5f2f100 | 2025-03-20 18:38:48 +0400 | [diff] [blame] | 5 | |
| gio | d002661 | 2025-05-08 13:00:36 +0000 | [diff] [blame] | 6 | createRoot(document.getElementById("root")!).render( |
| 7 | <StrictMode> | ||||
| 8 | <App /> | ||||
| 9 | </StrictMode>, | ||||
| 10 | ); | ||||