jbilcke-hf's picture
jbilcke-hf HF staff
release 1.3
b022cb9
raw
history blame
No virus
317 Bytes
"use client"
import { useEffect } from "react"
import { Button } from "@/components/ui/button"
import { useOAuth } from "@/lib/useOAuth"
function Login() {
const { login } = useOAuth({ debug: false })
return <Button onClick={login} className="text-xl">Sign-in with Hugging Face</Button>
}
export default Login