Google OAuth Authentication
Status:{" "}
{auth?.user?.email ? "✅ Authenticated" : "⚠️ Not Authenticated"}
{auth?.user?.email
? (
Email: {auth.user.email}
Name: {auth.user.name}
)
: (
Click the button below to authenticate with Google
)}
💡 Usage:{" "}
This charm provides Google OAuth authentication. Link its{" "}
auth output to any gmail importer charm's{" "}
auth input.
),
auth,
};
},
);