import type { ReactNode } from "react";

// Pass-through: the parent AdminShell handles the login-specific rendering
export default function LoginLayout({ children }: { children: ReactNode }) {
  return <>{children}</>;
}
