10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
import Stack from "@/src/components/twui/layout/Stack";
|
|
import LoginForm from "../(partials)/login-form";
|
|
|
|
export default function LoginFormSection() {
|
|
return (
|
|
<Stack className="w-full items-center max-w-3xl mx-auto gap-7">
|
|
<LoginForm />
|
|
</Stack>
|
|
);
|
|
} |