main.tsx 333 B
Newer Older
Andrei Eres's avatar
Andrei Eres committed
import React from 'react'
Andrei Eres's avatar
Andrei Eres committed
import { createRoot } from 'react-dom/client'
Andrei Eres's avatar
Andrei Eres committed
import { ROOT_ID } from '../utils/constants'
import { App } from './App'

Andrei Eres's avatar
Andrei Eres committed
const container = document.getElementById(ROOT_ID)
if (!container) throw new Error(`Unable to find element with id '${ROOT_ID}'`)
Andrei Eres's avatar
Andrei Eres committed

Andrei Eres's avatar
Andrei Eres committed
const root = createRoot(container)
root.render(<App />)