14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
|
|
import { HumasLayout } from "@/components/layout/HumasLayout";
|
||
|
|
|
||
|
|
export default function AuthLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<HumasLayout>
|
||
|
|
{children}
|
||
|
|
</HumasLayout>
|
||
|
|
);
|
||
|
|
}
|