mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-21 02:42:07 -05:00
14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
import { LOG_IN_URL } from "~/utils/urls";
|
|
|
|
export function LogInButtonContainer({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<form action={LOG_IN_URL} method="post" className="stack items-center">
|
|
{children}
|
|
</form>
|
|
);
|
|
}
|