Skip to content

Instantly share code, notes, and snippets.

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