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