2019-11-26 10:01:26 +00:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import "./index.css";
|
|
|
|
import App from "./App";
|
|
|
|
import * as serviceWorker from "./serviceWorker";
|
2019-11-12 12:21:05 +00:00
|
|
|
|
2019-11-26 10:01:26 +00:00
|
|
|
import store from "./store";
|
|
|
|
import { Provider } from "react-redux";
|
|
|
|
|
|
|
|
function render() {
|
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<App />
|
|
|
|
</Provider>,
|
|
|
|
document.getElementById("root")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
render();
|
2019-11-12 12:21:05 +00: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();
|