Shinhati2023 commited on
Commit
4eaa9f4
·
verified ·
1 Parent(s): 052f837

Create client/src/main.jsx

Browse files
Files changed (1) hide show
  1. 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 />)