Files
ef_front/app/components/SignInClient.tsx

9 lines
159 B
TypeScript
Raw Normal View History

2025-09-07 22:57:43 +00:00
"use client"
import { signIn } from "next-auth/react"
export default function SignIn() {
2025-09-08 18:30:34 +00:00
return
<button onClick={() => signIn("google")}>
2025-09-07 22:57:43 +00:00
</button>
}