Reputation: 61
I have a React table like this. Do we have anyway to export this table to CSV file and keep the same structure.
Upvotes: 0
Views: 1323
Reputation: 6752
Yes, but how easy it is really depends on how the underlying state is being stored in your app.
The react-csv
package allows you to pass it an array of data and add a Download button to your site, but you first need to arrange/collect the data into the right format for it.
Upvotes: 1