Second / src /main.jsx
hotboxxgenn's picture
Update src/main.jsx (#19)
50ce3f4 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>,
)