8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
|
|
"use client"
|
||
|
|
|
||
|
|
import { signIn } from "next-auth/react"
|
||
|
|
|
||
|
|
export default function SignIn() {
|
||
|
|
return <button onClick={() => signIn("google")}>
|
||
|
|
</button>
|
||
|
|
}
|