diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx index 05d8b6e..b9c8290 100644 --- a/frontend/src/main.jsx +++ b/frontend/src/main.jsx @@ -1,11 +1,12 @@ -import React from 'react' -import ReactDOM from 'react-dom/client' -import App from './App.jsx' +import React from 'react'; +import ReactDOM from 'react-dom/client'; // Ensure you're using React 18 or above +import App from './App.jsx'; // Import your main App component -import "./index.css"; +import "./index.css"; // Import your CSS file +// Create a root and render the App component ReactDOM.createRoot(document.getElementById('root')).render( , -) +);