source:
frontend/src/main.tsx@
5c65932
| Last change on this file since 5c65932 was 15ec67f, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 231 bytes | |
| Line | |
|---|---|
| 1 | import { StrictMode } from "react"; |
| 2 | import { createRoot } from "react-dom/client"; |
| 3 | import App from "./App.tsx"; |
| 4 | import "./index.css"; |
| 5 | |
| 6 | createRoot(document.getElementById("root")!).render( |
| 7 | <StrictMode> |
| 8 | <App /> |
| 9 | </StrictMode>, |
| 10 | ); |
Note:
See TracBrowser
for help on using the repository browser.
