renderer.tsx 195 B

1234567
  1. import App from './app'
  2. import './app.css'
  3. import { createRoot } from 'react-dom/client'
  4. const container = document.getElementById('app')
  5. const root = createRoot(container)
  6. root.render(<App />)