Angular job portal app
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

index.tsx 796 B

3 lat temu
12345678910111213141516171819202122
  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();