MDA / frontend /src /main.tsx
Rom89823974978's picture
initial
3d701d8
raw
history blame contribute delete
230 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)