
Christopher Francisco
6,425 PointsWhy are we passing the `index`, instead of the `player` itself?
Isn't it better to work directly with the business object we're managing?
<Player
onScoreChange={ function(delta) { this.onScoreChange(player, delta) }.bind(this) )}
...