Spaces:
Sleeping
Sleeping
Create client/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 ReactDOM from 'react-dom/client'
|
| 3 |
+
import App from './App.jsx'
|
| 4 |
+
import './index.css'
|
| 5 |
+
ReactDOM.createRoot(document.getElementById('root')).render(<App />)
|