meal_planner/src/components/LogOutButton.tsx
2021-03-28 13:01:34 +02:00

14 lines
320 B
TypeScript

import React from "react";
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>
);
};