diff --git a/src/components/LogOutButton.tsx b/src/components/LogOutButton.tsx deleted file mode 100644 index 4252043..0000000 --- a/src/components/LogOutButton.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { useAuth0 } from "../utils/auth0-spa"; - -export const LogOutButton = () => { - const { logout } = useAuth0(); - const handleClick = () => logout(); - - return ( - - ); -};