auth / client /src /main.jsx
Piyush1225's picture
UPDATE: UI and client assets
808332c
raw
history blame contribute delete
230 Bytes
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
)