index.js 478 B

12345678910111213141516
  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import App from './App';
  4. import reportWebVitals from './reportWebVitals';
  5. ReactDOM.render(
  6. <React.StrictMode>
  7. <App />
  8. </React.StrictMode>,
  9. document.getElementById('root')
  10. );
  11. // If you want to start measuring performance in your app, pass a function
  12. // to log results (for example: reportWebVitals(console.log))
  13. // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
  14. reportWebVitals();