How to logout ?
Answered
i_lost_to_loba_kreygasm posted this in #help-forum
I managed to login with google provider in next-auth but now I want to add a logout function ? how can I do that ?
Answered by Cão Fila de São Miguel
You can use below method to logout.
https://next-auth.js.org/getting-started/client#signout
import { signOut } from "next-auth/react"
<button onClick={() => signOut()}>Sign out</button>
https://next-auth.js.org/getting-started/client#signout
1 Reply
Cão Fila de São Miguel
You can use below method to logout.
https://next-auth.js.org/getting-started/client#signout
import { signOut } from "next-auth/react"
<button onClick={() => signOut()}>Sign out</button>
https://next-auth.js.org/getting-started/client#signout
Answer