14 lines
322 B
React
14 lines
322 B
React
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import './index.css'
|
|
import App from './App.jsx'
|
|
|
|
const rootElement = document.getElementById('root')
|
|
if (!rootElement) throw new Error('Root element not found')
|
|
|
|
createRoot(rootElement).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
)
|