Second / src /main.jsx
hotboxxgenn's picture
Create src/main.jsx (#4)
b911649 verified
raw
history blame
213 Bytes
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)