web-isu-kini/app/auth/layout.tsx

8 lines
117 B
TypeScript
Raw Normal View History

2025-09-23 03:32:23 +00:00
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return <> {children}</>;
}