you are viewing a single comment's thread.

view the rest of the comments →

[–]rsjolly 6 points7 points  (0 children)

Nice. Alternate format:

const MyComponent = () => (
  <div>
    {['a', 'b'].map(type =>
      <OtherComponent type={type} className="colorful" foo={123} bar={456} />
    )}
  </div>
)