I had a javascript array that was rendering components using array.map. I switched this array to an es6 Map in order to be able to use key-value pairs
array.map
Map
Just a slight improvement on danday74's example using array destructuring. With options the ES6 Map:
{[...options].map(([key, value]) => ( {value} ))} ;