Files
catherine-league/nextjs/src/components/admin/LogoutButton.tsx
2026-03-31 16:09:03 +09:00

19 lines
384 B
TypeScript

'use client';
import style from '@/styles/admin.module.scss';
export function LogoutButton() {
return (
<button
type="button"
className={style.btnGhost}
onClick={async () => {
await fetch('/api/auth/logout', { method: 'POST', credentials: 'include' });
window.location.href = '/admin/login';
}}
>
Log out
</button>
);
}