const buildLegendItem = function (x){
return (
<div><span>{x}</span></div>
);
}
export default function Legend(props){
return(
<>
<div className="legend">
{[1,2,3,4,5].map(x=>{ buildLegendItem(x) })}
</div>
</>
)
}