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

const rootElement = document.getElementById(ROOT_ID)
if (!rootElement) throw new Error(`Unable to find element with id '${ROOT_ID}'`)

ReactDOM.render(<App />, rootElement)