mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
'use client';
|
|
import { signOut } from 'next-auth/react';
|
|
|
|
export default function LogoutButton() {
|
|
return (
|
|
<button
|
|
type="button"
|
|
className="w-full rounded-md bg-indigo-500 p-3 text-white"
|
|
onClick={() => signOut({ callbackUrl: '/' })}
|
|
>
|
|
Logout
|
|
</button>
|
|
);
|
|
}
|