<div>
<ReactTable
data={this.state.listFruitData}
columns={columns}
defaultPageSize={10}
getTrProps={onRowClick}
/>
</div>
- I am actually populating data(listFruitData) in ReactTable from post request call.
- My requirement is I need to first select row of ReactTable may be using some background color so that it looks like the row is selected
- While I am selecting row I should get hand(icon) hover on ReactTable row
- How to do this?