Update app/(auth)/layout.tsx
This commit is contained in:
parent
f9a0cfa9c9
commit
e81e664c93
|
|
@ -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