15 lines
257 B
TypeScript
15 lines
257 B
TypeScript
import { signIn } from "@/auth";
|
|
|
|
export default function SignInButton() {
|
|
return (
|
|
<form
|
|
action={async () => {
|
|
"use server";
|
|
await signIn("github");
|
|
}}
|
|
>
|
|
<button type="submit">Sign In</button>
|
|
</form>
|
|
);
|
|
}
|