const colorBar = [ "#7272FF", "#8585FF", "#fff", "#FFAFAF", "#FF9C9C", "#FF8787", "#FF7474", "#FF6060", "#FF4B4B", "#FE3838", "#FF2323", ]; function Legend() { return (
{colorBar.map((color, index) => { return (
); })}
{[-0.02, -0.01, 0.01, 0.02, 0.03, 0.05, 0.1, 0.15, 0.2, 0.25, ""].map( (item, index) => { return (
{item}
); } )}
); } export default Legend;