Files
recflare/apps/www/src/client/main.tsx
T
Devin Zuczek f0a273a3c4 wip web
2026-07-09 00:56:50 -04:00

16 lines
298 B
TypeScript

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { App } from './App'
import './styles.css'
const root = document.getElementById('root')
if (!root) throw new Error('missing #root element')
createRoot(root).render(
<StrictMode>
<App />
</StrictMode>
)