Skip to content

Commit

Permalink
Update main.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ElamathiiSelvan authored Oct 18, 2024
1 parent 86b5a18 commit d073448
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions frontend/src/main.jsx
Original file line number Diff line number Diff line change
@@ -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(
<React.StrictMode>
<App />
</React.StrictMode>,
)
);

0 comments on commit d073448

Please sign in to comment.