Skip to content

Instantly share code, notes, and snippets.

@Franpastoragusti
Created January 21, 2019 16:01
Show Gist options
  • Save Franpastoragusti/6e3019423c90266791b2f6588662c692 to your computer and use it in GitHub Desktop.
Save Franpastoragusti/6e3019423c90266791b2f6588662c692 to your computer and use it in GitHub Desktop.
/* /src/components/auth/logoutCallback.jsx */
import React from "react";
import { AuthConsumer } from "../../providers/authProvider";
export const LogoutCallback = () => (
<AuthConsumer>
{({ signoutRedirectCallback }) => {
signoutRedirectCallback();
return <span>loading</span>;
}}
</AuthConsumer>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment