I am using https://react-table.js.org/#/story/readme for displaying table from server response. But for column data with long length, its showing ellipsis. I am not finding a way for wrapping it, so that full data is displayed.
In the doc, they have mentioned style
prop, but I am not able to figure it out. I tried below, but it did not work.
<ReactTable
data={respDataArr}
columns={columns}
style={{overflow:'wrap'}}
/>
Can someone suggest please what change should I do?