Looking for a way to add an "Export to CSV" button to a react-table which is an npmjs package (https://www.npmjs.com/package/react-table).
I need to add a custom button for exporting the table data to an excel sheet in the csv or xls format?
Looking for a way to add an "Export to CSV" button to a react-table which is an npmjs package (https://www.npmjs.com/package/react-table).
I need to add a custom button for exporting the table data to an excel sheet in the csv or xls format?
I thought I'd piggyback on best wishes' extremely valuable answer with a simplified
download
implementation.I used this to allow multiple table exports in one component by adding additional
export
functions.Take a look at this npm library - https://www.npmjs.com/package/react-csv
For example -
Although the accepted answer is correct, but it needed more work to make the integration seamless. Here is how integration will look like
This will work with filters as well.