Update src/main.jsx
Browse files- src/main.jsx +8 -8
src/main.jsx
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
import
|
| 2 |
-
import
|
| 3 |
-
import './
|
| 4 |
-
import
|
| 5 |
|
| 6 |
-
createRoot(document.getElementById('root')).render(
|
| 7 |
-
<StrictMode>
|
| 8 |
<App />
|
| 9 |
-
</StrictMode>,
|
| 10 |
-
)
|
|
|
|
| 1 |
+
import React from 'react';
|
| 2 |
+
import ReactDOM from 'react-dom/client';
|
| 3 |
+
import App from './App.jsx';
|
| 4 |
+
import './index.css'; // Import the external CSS file
|
| 5 |
|
| 6 |
+
ReactDOM.createRoot(document.getElementById('root')).render(
|
| 7 |
+
<React.StrictMode>
|
| 8 |
<App />
|
| 9 |
+
</React.StrictMode>,
|
| 10 |
+
);
|