+ {BAND_ORDER.map((band) => {
+ const count = countsMap.get(band) || 0;
+ const active = count > 0;
+ const color = DEFAULT_BAND_COLORS[band] || '#888888';
+ const barWidth = maxCount > 0 ? Math.max((count / maxCount) * 100, 1.5) : 0;
+ return (
+
+
+ {band}
+
+
+
+ {count}
+
+
+ );
+ })}
+