10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import { GetServerSideProps, NextApiRequest, NextApiResponse } from 'next'
|
|
import { signOut, signout } from 'next-auth/client'
|
|
|
|
export default function SignOut() {
|
|
return (
|
|
<div>
|
|
<button onClick={() => signOut()}>Sign Out</button>
|
|
</div>
|
|
)
|
|
}
|