import { ReactNode } from 'react'; import { StudioHeader } from '@edx/frontend-component-header'; import AuthZTitle, { AuthZTitleProps } from './AuthZTitle'; interface AuthZLayoutProps extends AuthZTitleProps { children: ReactNode; context: { id: string; org: string; title: string; } } const AuthZLayout = ({ children, context, ...props }: AuthZLayoutProps) => ( <> {children} ); export default AuthZLayout;