Let's say you have unique IDs (such as tweet ids), would it make sense to pass them (regarding performance)?
Like so:
<ScrollViewport class="list" rowHeight={this.rowHeight}>
{ rows.map( row => (
<div class="row" key={row.id}>{row.entry}</div>
)) }
</ScrollViewport>