import * as React from "react"; import { render } from "react-dom"; import { Provider } from "react-redux"; import { ConnectedRouter } from "connected-react-router"; import configureStore, { history } from "./store/index"; import App from "./components/App"; const store = configureStore({}); const rootEl = document.getElementById("root"); render( , rootEl, );