diff --git a/src/index.js b/src/index.js
index 65c2fdf..9d48876 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,16 +1,16 @@
import React from 'react';
-import ReactDOM from 'react-dom';
+import { createRoot } from 'react-dom/client';
import { AlertProvider } from 'context/AlertContext';
import App from './App';
import reportWebVitals from './reportWebVitals';
-ReactDOM.render(
+const root = createRoot(document.getElementById('root'));
+root.render(
- ,
- document.getElementById('root')
+
);
// If you want to start measuring performance in your app, pass a function