+ {/* Row label */}
+ {showRowLabels && grid.rowLabels && (
+
+ {grid.rowLabels[rowIdx]}
+
+ )}
+ {/* Row cells */}
+ {row.map((cell, colIdx) => {
+ const pointer = pointerPositions.get(`${rowIdx}-${colIdx}`);
+ return (
+
+ {pointer && (
+
+ {pointer.name}
+
+ )}
+
+
+ );
+ })}
+