feat: remove LogOutButton.tsx

This commit is contained in:
Ruidy 2021-12-13 12:30:54 -04:00
parent c3df2ba713
commit 09b69aeccb

View file

@ -1,12 +0,0 @@
import { useAuth0 } from "../utils/auth0-spa";
export const LogOutButton = () => {
const { logout } = useAuth0();
const handleClick = () => logout();
return (
<button className="waves-effect waves-teal btn-flat" onClick={handleClick}>
Log out
</button>
);
};