web-humas-fe/app/auth/layout.tsx

10 lines
182 B
TypeScript

import { HumasLayout } from "@/components/layout/humas-layout";
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return <> {children}</>;
}