Hoang Nguyen
Hoang Nguyen

Reputation: 61

React Export a Multiple Level Table to CSV File

I have a React table like this. Do we have anyway to export this table to CSV file and keep the same structure.

enter image description here

Upvotes: 0

Views: 1323

Answers (1)

Luke Storry
Luke Storry

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

Related Questions