mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 20:27:44 +00:00
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import { LoginForm } from "~/components/login-form";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="flex h-screen w-full items-center justify-center px-4">
|
|
<LoginForm />
|
|
</div>
|
|
);
|
|
}
|