type ProfileLayoutProps = React.PropsWithChildren<{ edit: React.ReactNode verifyCode: React.ReactNode view: React.ReactNode }> export default function ProfileLayout({ children, edit, verifyCode, view }: ProfileLayoutProps) { return ( <> {edit} {view} {children} {verifyCode} ) }