You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

signout.tsx 189B

123456789
  1. import { signOut } from 'next-auth/client'
  2. export default function SignOut(): JSX.Element {
  3. return (
  4. <div>
  5. <button onClick={() => signOut()}>Sign Out</button>
  6. </div>
  7. )
  8. }