Created
May 2, 2020 17:29
-
-
Save leniel/6489ac93cc0ff8cc12b0d63dd3a493fe to your computer and use it in GitHub Desktop.
ReactJS To Do app index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import './index.css'; | |
import App from './App'; | |
import * as serviceWorker from './serviceWorker'; | |
import { Auth0Provider } from './auth/Auth' | |
import config from "./auth/auth_config.json"; | |
import history from "./utils/history"; | |
// A function that routes the user to the right place after login | |
const onRedirectCallback = appState => | |
{ | |
history.push( | |
appState && appState.targetUrl | |
? appState.targetUrl | |
: window.location.pathname | |
); | |
}; | |
// console.log(config.domain) | |
// console.log(config.clientId) | |
ReactDOM.render( | |
<Auth0Provider | |
domain={config.domain} | |
client_id={config.clientId} | |
redirect_uri={config.callbackUrl} | |
onRedirectCallback={onRedirectCallback} | |
response_type={config.responseType} | |
audience={config.audience} | |
scope={config.scope}> | |
<App /> | |
</Auth0Provider>, | |
document.getElementById('root')); | |
// 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(); | |
// HMR | |
if (module.hot) | |
{ | |
module.hot.accept(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment