import React from "react"; import ReactDOM from "react-dom"; import App from "./App"; import * as serviceWorker from "./serviceWorker"; import { Auth0Provider } from "./authentication/auth0"; import config from "./authentication/config.json"; import history from "./utils/history"; const onRedirectCallback = (appState) => { history.push( appState && appState.targetUrl ? appState.targetUrl : window.location.pathname ); }; ReactDOM.render( , document.getElementById("root") ); serviceWorker.unregister();