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

14 lines
246 B
TypeScript
Raw Normal View History

2024-04-26 06:44:12 +00:00
import { HumasLayout } from "@/components/layout/HumasLayout";
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<HumasLayout>
{children}
</HumasLayout>
);
}