19 lines
382 B
TypeScript
19 lines
382 B
TypeScript
/**
|
|||
|
|
* Entry point — mounts the React app into #root.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { StrictMode } from 'react'
|
||
|
|
import { createRoot } from 'react-dom/client'
|
||
|
|
import App from './App'
|
||
|
|
|
||
|
|
const rootElement = document.getElementById('root')
|
||
|
|
if (!rootElement) {
|
||
|
|
throw new Error('Root element #root not found in document')
|
||
|
|
}
|
||
|
|
|
||
|
|
createRoot(rootElement).render(
|
||
|
|
<StrictMode>
|
||
|
|
<App />
|
||
|
|
</StrictMode>,
|
||
|
|
)
|