tldraw/pages/signout.tsx
2021-06-21 22:35:28 +01:00

9 lines
189 B
TypeScript

import { signOut } from 'next-auth/client'
export default function SignOut(): JSX.Element {
return (
<div>
<button onClick={() => signOut()}>Sign Out</button>
</div>
)
}