summaryrefslogtreecommitdiffhomepage
path: root/src/main.jsx
blob: ac292fddd6c07b02ec6c77649770d74f4dd1adf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './index.css'

 // null assertion for tsx
//ReactDOM.createRoot(document.getElementById('root')!).render(
ReactDOM.createRoot(document.getElementById('root')).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
)