aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/main.jsx
blob: 9af0bb638e42c0a34d9899f5f5af8b0fd2748416 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import './index.css'

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