Skip to content

Instantly share code, notes, and snippets.

@leniel
Created May 2, 2020 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leniel/6489ac93cc0ff8cc12b0d63dd3a493fe to your computer and use it in GitHub Desktop.
Save leniel/6489ac93cc0ff8cc12b0d63dd3a493fe to your computer and use it in GitHub Desktop.
ReactJS To Do app index.js
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