import React from 'react' export default function GroupStudioPromoCard({ title, description, bullets = [], primaryLabel, primaryHref, secondaryLabel, secondaryHref }) { return (
Studio groups

{title}

{description}

{bullets.length > 0 ? (
{bullets.map((bullet) => (
{bullet.title}
{bullet.body}
))}
) : null}
{primaryHref ? {primaryLabel} : null} {secondaryHref ? {secondaryLabel} : null}
) }