diff options
| author | Yuval Adam <_@yuv.al> | 2022-08-29 09:52:34 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-08-29 09:52:49 +0300 |
| commit | 998b5cda31aa14a443861568edfc113065d660bb (patch) | |
| tree | 6aff0700e96d5ddef3be9a9158594c8f98310bb4 /src/index.js | |
| parent | 544b1b1f57755491130864ed71e3cf0ae985b66f (diff) | |
Copy over template from new react scripts project
Diffstat (limited to 'src/index.js')
| -rw-r--r-- | src/index.js | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js index dbc6663..a18f675 100644 --- a/src/index.js +++ b/src/index.js @@ -1,11 +1,20 @@ import React from 'react'; -import ReactDOM from 'react-dom'; +import ReactDOM from 'react-dom/client'; import './index.css'; import App from './Geshem'; -import * as serviceWorker from './serviceWorker'; +import reportWebVitals from './reportWebVitals'; console.log() -ReactDOM.render(<App />, document.getElementById('root')); -serviceWorker.unregister(); +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + <React.StrictMode> + <App /> + </React.StrictMode> +); + +// 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(); |
