export default Card function Card({ heading, content, step }) { return (
{step &&

{step}

{heading}
}
{content}
) }