2022-08-31 12:35:20 +00:00
|
|
|
import React from 'react';
|
2022-09-01 16:47:36 +00:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2022-09-11 18:01:12 +00:00
|
|
|
import App from './App';
|
2022-10-17 08:08:00 +00:00
|
|
|
import * as serviceWorkerRegistration from './serviceWorkerRegistration';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
2022-09-01 16:47:36 +00:00
|
|
|
|
|
|
|
const container = document.getElementById('root');
|
|
|
|
const root = createRoot(container!);
|
2022-09-11 18:01:12 +00:00
|
|
|
root.render(
|
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>
|
|
|
|
);
|
|
|
|
|
2022-10-17 08:08:00 +00:00
|
|
|
// If you want your app to work offline and load faster, you can change
|
|
|
|
// unregister() to register() below. Note this comes with some pitfalls.
|
|
|
|
// Learn more about service workers: https://cra.link/PWA
|
|
|
|
serviceWorkerRegistration.unregister();
|
2022-09-11 18:01:12 +00:00
|
|
|
|
2022-10-17 08:08:00 +00: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
|
|
|
|
reportWebVitals();
|