chore: add memberships "endoint"

This commit is contained in:
Matilda Landström
2024-06-14 10:35:41 +02:00
committed by Michael Zetterberg
parent f40a6d4288
commit 3e54d3c29e
10 changed files with 175 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ export default function ProfileLayout({
children,
communication,
creditCards,
membershipCards,
profile,
}: React.PropsWithChildren<ProfileLayoutProps>) {
return (
@@ -14,6 +15,7 @@ export default function ProfileLayout({
<section className="profile-layout">
{profile}
{creditCards}
{membershipCards}
<Divider color="burgundy" opacity={8} />
{communication}
</section>