Files
Cultivation/src/index.tsx
2022-07-19 20:47:11 -05:00

22 lines
553 B
TypeScript

import React from 'react'
import ReactDOM from 'react-dom/client'
import './index.css'
import App from './ui/App'
import Debug from './ui/Debug'
import { getConfigOption } from './utils/configuration'
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
let isDebug = false
;async () => {
isDebug = await getConfigOption('debug_enabled')
}
root.render(<React.StrictMode>{isDebug ? <Debug /> : <App />}</React.StrictMode>)
import reportWebVitals from './utils/reportWebVitals'
isDebug && reportWebVitals(console.log)