8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
|
import App from './app'
|
||
|
import './app.css'
|
||
|
import { createRoot } from 'react-dom/client'
|
||
|
|
||
|
const container = document.getElementById('app')
|
||
|
const root = createRoot(container)
|
||
|
root.render(<App />)
|