index.jsx 227 B

12345678
  1. /* eslint-disable react/react-in-jsx-scope */
  2. import { createRoot } from 'react-dom/client'
  3. import App from './App.jsx'
  4. const container = document.getElementById('app')
  5. const root = createRoot(container)
  6. root.render(<App />)