diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2025-10-22 13:59:12 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-22 12:59:12 +0300 |
| commit | 69aeb7889ac136a8e4fbe7de1330298e30345479 (patch) | |
| tree | 6b2cd2d420105dc7ffad3c3649df359f634cae77 /frontend/src/index.tsx | |
| parent | feat/rankings: update wr for 3 maps (#279) (diff) | |
| download | lphub-69aeb7889ac136a8e4fbe7de1330298e30345479.tar.gz lphub-69aeb7889ac136a8e4fbe7de1330298e30345479.tar.bz2 lphub-69aeb7889ac136a8e4fbe7de1330298e30345479.zip | |
feat/frontend: switch to vite, update node to v22 (#281)
Diffstat (limited to 'frontend/src/index.tsx')
| -rw-r--r-- | frontend/src/index.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index eec2ff4..13d180c 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | import React from 'react'; | 1 | import React from "react"; |
| 2 | import ReactDOM from 'react-dom/client'; | 2 | import ReactDOM from "react-dom/client"; |
| 3 | import { BrowserRouter } from "react-router-dom"; | 3 | import { BrowserRouter } from "react-router-dom"; |
| 4 | 4 | ||
| 5 | import App from './App'; | 5 | import App from "./App"; |
| 6 | 6 | ||
| 7 | const root = ReactDOM.createRoot( | 7 | const root = ReactDOM.createRoot( |
| 8 | document.getElementById('root') as HTMLElement | 8 | document.getElementById("root") as HTMLElement |
| 9 | ); | 9 | ); |
| 10 | 10 | ||
| 11 | root.render( | 11 | root.render( |