From 2e5fefca8c31669c416b3405b55eba06fe870ea9 Mon Sep 17 00:00:00 2001 From: Aathish101 Date: Fri, 18 Oct 2024 23:26:17 +0530 Subject: [PATCH] Update main.jsx updated --- frontend/src/main.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx index 05d8b6e..301400f 100644 --- a/frontend/src/main.jsx +++ b/frontend/src/main.jsx @@ -1,11 +1,11 @@ -import React from 'react' -import ReactDOM from 'react-dom/client' -import App from './App.jsx' - -import "./index.css"; +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 your CSS file +// Create a root and render the App component ReactDOM.createRoot(document.getElementById('root')).render( , -) +);