-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
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>
Reactions are currently unavailable