fifteen/apps/web/components/logout-button.tsx
2026-03-01 21:58:53 +01:00

18 lines
364 B
TypeScript

"use client";
export function LogoutButton() {
const handleLogout = async () => {
await fetch("/api/admin/logout", { method: "POST" });
window.location.href = "/admin/login";
};
return (
<button
type="button"
onClick={handleLogout}
className="text-sm text-gray-500 hover:text-gray-700"
>
Logout
</button>
);
}