@ui5/cra-template-webcomponents-react
Advanced tools
Comparing version 0.22.4 to 0.22.5
{ | ||
"name": "@ui5/cra-template-webcomponents-react", | ||
"version": "0.22.4", | ||
"version": "0.22.5", | ||
"keywords": [ | ||
@@ -33,3 +33,3 @@ "react", | ||
}, | ||
"gitHead": "26ff6b1838222337005207cf8a578e4ff3780920" | ||
"gitHead": "5c7898c74d440596c6d21f02fe6462539a502345" | ||
} |
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import { createRoot } from 'react-dom/client'; | ||
import App from './App'; | ||
import './index.css'; | ||
import App from './App'; | ||
import reportWebVitals from './reportWebVitals'; | ||
ReactDOM.render( | ||
<React.StrictMode> | ||
<App /> | ||
</React.StrictMode>, | ||
document.getElementById('root') | ||
); | ||
const container = document.getElementById('root'); | ||
const root = createRoot(container); | ||
root.render(<App />); | ||
// If you want to start measuring performance in your app, pass a function | ||
@@ -15,0 +13,0 @@ // to log results (for example: reportWebVitals(console.log)) |
45228
184