diff --git a/src/main.jsx b/src/main.jsx
index 873175b..1e657d4 100644
--- a/src/main.jsx
+++ b/src/main.jsx
@@ -3,8 +3,10 @@ import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
-ReactDOM.createRoot(document.getElementById('root')).render(
-
-
-
-)
+const root = ReactDOM.createRoot(document.getElementById('root'));
+
+root.render(
+
+
+
+);
\ No newline at end of file