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

8 lines
117 B
TypeScript

export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return <> {children}</>;
}