binaychandra's picture
added all files
1a282d7
raw
history blame contribute delete
263 Bytes
import React from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
import './style.css'
const el = document.getElementById('root')
if (el) {
createRoot(el).render(
<React.StrictMode>
<App />
</React.StrictMode>
)
}