const Title = styled.div` font: ${fonts.serif}; ` const Button = styled.button` ${(props) => (props.primary && ' background: black')} ` const Artwork = ({ artists, title, forSale }) => ( <div> <Artists> {artists.map(a => a.name).join(‘, ‘)} </Artists> <Title>{title || 'untitled'}</Title> {forSale && <Button primary>Buy</Button>} </div> ) Putting it together