index.js 445 Bytes
Newer Older
timothe 2004's avatar
timothe 2004 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);

// Si vous souhaitez mesurer les performances de votre application
// pour plus d'informations: https://bit.ly/CRA-vitals
reportWebVitals();