This commit is contained in:
Balázs Orbán
2023-05-05 02:30:33 +02:00
parent c470960d93
commit 7da32563d6

View File

@@ -48,7 +48,7 @@
*
* ```ts title="app/auth-components.tsx"
* "use client"
* import { signIn, signOut } from "@next-auth/react"
* import { signIn, signOut } from "next-auth/react"
*
* export function SignIn({provider, ...props}: any) {
* return <button {...props} onClick={() => signIn(provider)}/>