2020-03-15 17:50:56 +11:00
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
|
import App from "./App";
|
2020-03-19 18:56:42 +11:00
|
|
|
import Modal from "react-modal";
|
|
|
|
|
|
2020-04-07 18:18:08 +10:00
|
|
|
// Add css for simplebar
|
|
|
|
|
import "simplebar/dist/simplebar.min.css";
|
|
|
|
|
|
2020-03-15 17:50:56 +11:00
|
|
|
import * as serviceWorker from "./serviceWorker";
|
2020-03-15 16:04:30 +11:00
|
|
|
|
2020-03-20 20:29:35 +11:00
|
|
|
import "./index.css";
|
|
|
|
|
|
2020-03-19 18:56:42 +11:00
|
|
|
Modal.setAppElement("#root");
|
2020-03-15 16:04:30 +11:00
|
|
|
|
2020-04-15 12:50:21 +10:00
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|
|
|
|
|
|
2020-03-15 16:04:30 +11:00
|
|
|
// If you want your app to work offline and load faster, you can change
|
|
|
|
|
// unregister() to register() below. Note this comes with some pitfalls.
|
|
|
|
|
// Learn more about service workers: https://bit.ly/CRA-PWA
|
|
|
|
|
serviceWorker.unregister();
|