@@ -27,9 +24,11 @@ function App() {
About
-
-
-
+
+ }>
+ }>
+ }>
+
diff --git a/src/index.js b/src/index.js
index b3bf05b..fc04f26 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,15 +1,17 @@
import React from 'react';
-import ReactDOM from 'react-dom';
+import { createRoot } from 'react-dom/client';
import App from './App';
import reportWebVitals from './reportWebVitals';
import './responsive.js'
-ReactDOM.render(
+const container = document.getElementById('root');
+const root = createRoot(container);
+root.render(
- ,
- document.getElementById('root')
-);
+
+ );
+
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))