sentimentLens / frontend /src /main.jsx
aaditya200's picture
SentimentLens fresh
df20aff
Raw
History Blame Contribute Delete
207 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './app.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)