summaryrefslogtreecommitdiff
path: root/src/main.tsx
blob: 91c03f3fb20c1e14d08aa8d45e742a5f3f2f62f6 (plain)
1
2
3
4
5
6
7
8
9
10
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'

ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
)