2022-08-08 20:04:04 -05:00
|
|
|
import React from 'react'
|
|
|
|
import ReactDOM from 'react-dom/client'
|
2022-08-07 21:06:40 -05:00
|
|
|
|
2022-08-08 21:19:52 -05:00
|
|
|
import './index.sass'
|
2022-08-08 20:04:04 -05:00
|
|
|
import App from './App'
|
|
|
|
import reportWebVitals from './reportWebVitals'
|
|
|
|
|
2022-08-08 21:04:37 -05:00
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
|
2022-08-07 21:06:40 -05:00
|
|
|
root.render(
|
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>
|
2022-08-08 20:04:04 -05:00
|
|
|
)
|
2022-08-07 21:06:40 -05:00
|
|
|
|
|
|
|
// If you want to start measuring performance in your app, pass a function
|
|
|
|
// to log results (for example: reportWebVitals(console.log))
|
|
|
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
2022-08-08 21:04:37 -05:00
|
|
|
reportWebVitals()
|