type AuthErrorAlertProps = { errorMessage: string; }; export default function AuthErrorAlert({ errorMessage }: AuthErrorAlertProps) { if (!errorMessage) { return null; } return (
{errorMessage}