diff options
Diffstat (limited to 'frontend/src/index.tsx')
| -rw-r--r-- | frontend/src/index.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index 2eef1bc..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( |