Update app/(auth)/layout.tsx
This commit is contained in:
parent
52b88f888c
commit
3200ce4f9c
|
|
@ -0,0 +1,14 @@
|
|||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue