Spaces:
Sleeping
Sleeping
Create src/main.jsx
Browse files- client/src/main.jsx +5 -0
client/src/main.jsx
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React from 'react';
|
| 2 |
+
import { createRoot } from 'react-dom/client';
|
| 3 |
+
import App from './App.jsx';
|
| 4 |
+
|
| 5 |
+
createRoot(document.getElementById('root')).render(<App />);
|