app-vibrant-gecko-yawn/app/(auth)/layout.tsx

15 lines
289 B
TypeScript

import { AuthLayout } from "@/layouts/auth-layout";
export default function AuthXLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AuthLayout>
<main className="flex h-full min-h-screen w-full">{children}</main>
</AuthLayout>
</>
);
}