mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-09 11:56:45 +00:00
14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
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>
|
|
);
|
|
};
|