[b9c3e9]: / frontend / src / index.js

Download this file

11 lines (10 with data), 262 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './components/App'
import './styles/style.css'
const root=ReactDOM.createRoot(document.getElementById('root'))
root.render(
<React.StrictMode>
<App/>
</React.StrictMode>
)