import React from 'react'; import { useAuth } from '../context/AuthContext'; export const LoginButton: React.FC = () => { const { user, loading } = useAuth(); if (loading) { return
Loading...
; } if (user) { return (
{user.display_name}
); } return null; // this makes the login button not apear when we alr logged in };