8 lines
256 B
TypeScript
8 lines
256 B
TypeScript
export default function AuthLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center bg-background px-4">
|
|
<div className="w-full max-w-sm">{children}</div>
|
|
</main>
|
|
);
|
|
}
|