Skip to content
Snippets Groups Projects
Select Git revision
  • 185e339210e4d07fcb3cee653d338070e097c031
  • master default protected
  • 2024-11
  • oprava-babel
  • 2024-1
  • 2023
  • 2022
7 results

index.js

Blame
  • user avatar
    xaralis authored
    185e3392
    History
    index.js 479 B
    import React from "react";
    import ReactDOM from "react-dom";
    
    import App from "./App";
    import reportWebVitals from "./reportWebVitals";
    
    ReactDOM.render(
      <React.StrictMode>
        <App />
      </React.StrictMode>,
      document.getElementById("root")
    );
    
    // 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();