index.jsx 588 B

12345678910111213141516171819202122232425
  1. import "./wdyr";
  2. import React from "react";
  3. import ReactDOM from "react-dom";
  4. import "./sentry";
  5. import "./index.css";
  6. import "./i18n"; // load translation system
  7. import App from "./App";
  8. import * as serviceWorker from "./serviceWorker";
  9. ReactDOM.render(
  10. <React.StrictMode>
  11. <App />
  12. </React.StrictMode>,
  13. document.getElementById("root")
  14. );
  15. // If you want your app to work offline and load faster, you can change
  16. // unregister() to register() below. Note this comes with some pitfalls.
  17. // Learn more about service workers: https://bit.ly/CRA-PWA
  18. serviceWorker.unregister();