import MaxWidth from "@/components/MaxWidth" import type { ProfileLayoutProps } from "@/types/components/myPages/myProfile/layout" export default function ProfileLayout({ children, communication, creditCards, edit, membershipCard, password, profile, view, wishes, }: React.PropsWithChildren) { return (
{edit} {view}
{profile} {children}
{communication} {wishes} {membershipCard} {creditCards} {password}
) }