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

8 lines
117 B
TypeScript
Raw Normal View History

2024-04-26 06:44:12 +00:00
export default function AuthLayout({
2024-11-05 06:15:40 +00:00
children,
2024-04-26 06:44:12 +00:00
}: {
2024-11-05 06:15:40 +00:00
children: React.ReactNode;
2024-04-26 06:44:12 +00:00
}) {
2024-11-22 02:56:34 +00:00
return <> {children}</>;
2024-04-26 06:44:12 +00:00
}