import type { ReactNode } from "react"; type LayoutProps = { children: ReactNode; }; export default function Layout({ children }: LayoutProps) { return ( <> Mock SAML IdP {children} > ); }