tldraw/pages/signout.tsx

11 lines
260 B
TypeScript
Raw Normal View History

2021-06-20 12:35:47 +00:00
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>
)
}