idek a lot

This commit is contained in:
2024-07-19 13:51:18 -05:00
parent 6414307462
commit bf7f6a466a
5 changed files with 86 additions and 6 deletions

View File

@ -0,0 +1,13 @@
import { signOut } from "~/auth"
export default function Sign_Out() {
return (
<form className="w-full"
action={async () => {
"use server"
await signOut()
}}>
<button type="submit" className="w-full">Sign Out</button>
</form>
)
}