{unfilteredValuesShadow ? (
{allBins.map((count, index) => {
const withinRange = startIndex <= index && index <= endIndex;
return (
);
})}
) : null}
{bins.map((count, index) => {
const withinRange = startIndex <= index && index <= endIndex;
return (
);
})}
{xLabel && (
)}
{yLabel &&
}
{children}
);
};
export default Histogram;