index.jsx 568 B

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