--- a
+++ b/frontend/src/index.js
@@ -0,0 +1,11 @@
+import React from 'react';
+import { createRoot } from 'react-dom';
+import './index.css';
+import App from './App';
+import reportWebVitals from './reportWebVitals';
+
+const root = createRoot(document.getElementById('root'));
+root.render(<App />);
+
+
+reportWebVitals();
\ No newline at end of file