aboutsummaryrefslogtreecommitdiff
path: root/src/main.tsx
blob: 3d7150da80e43e3650342aa4758fa8b74e95d6d6 (about) (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')!).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
)