├── .gitignore ├── README.md ├── package.json ├── public └── index.html └── src ├── app.css ├── app.js ├── auth ├── auth0-provider-with-history.js └── protected-route.js ├── components ├── auth-nav.js ├── authentication-button.js ├── footer.js ├── hero.js ├── home-content.js ├── index.js ├── loading.js ├── login-button.js ├── logout-button.js ├── main-nav.js ├── nav-bar.js └── signup-button.js ├── index.css ├── index.js └── views ├── external-api.js ├── home.js ├── index.js └── profile.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/public/index.html -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/app.js -------------------------------------------------------------------------------- /src/auth/auth0-provider-with-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/auth/auth0-provider-with-history.js -------------------------------------------------------------------------------- /src/auth/protected-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/auth/protected-route.js -------------------------------------------------------------------------------- /src/components/auth-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/auth-nav.js -------------------------------------------------------------------------------- /src/components/authentication-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/authentication-button.js -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/hero.js -------------------------------------------------------------------------------- /src/components/home-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/home-content.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/loading.js -------------------------------------------------------------------------------- /src/components/login-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/login-button.js -------------------------------------------------------------------------------- /src/components/logout-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/logout-button.js -------------------------------------------------------------------------------- /src/components/main-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/main-nav.js -------------------------------------------------------------------------------- /src/components/nav-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/nav-bar.js -------------------------------------------------------------------------------- /src/components/signup-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/components/signup-button.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/index.js -------------------------------------------------------------------------------- /src/views/external-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/views/external-api.js -------------------------------------------------------------------------------- /src/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/views/home.js -------------------------------------------------------------------------------- /src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/views/index.js -------------------------------------------------------------------------------- /src/views/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/auth0-react-sample/HEAD/src/views/profile.js --------------------------------------------------------------------------------