Angular job portal app
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

23 linhas
796 B

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import App from './App';
  4. import * as serviceWorkerRegistration from './serviceWorkerRegistration';
  5. import reportWebVitals from './reportWebVitals';
  6. ReactDOM.render(
  7. <React.StrictMode>
  8. <App />
  9. </React.StrictMode>,
  10. document.getElementById('root')
  11. );
  12. // If you want your app to work offline and load faster, you can change
  13. // unregister() to register() below. Note this comes with some pitfalls.
  14. // Learn more about service workers: https://cra.link/PWA
  15. serviceWorkerRegistration.unregister();
  16. // If you want to start measuring performance in your app, pass a function
  17. // to log results (for example: reportWebVitals(console.log))
  18. // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
  19. reportWebVitals();