ot / frontend /src /main.jsx
jashdoshi77's picture
OT NoteBuilder - Production deployment
ba95018
raw
history blame contribute delete
208 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)