9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
import { createRoot } from 'react-dom/client'
|
|
import './index.css'
|
|
import './theme-init'
|
|
import App from './App'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<App />
|
|
)
|