how to export table data to excel in react js code example
Example 1: read and save excel with react
import readXlsxFile from 'read-excel-file' const input = document.getElementById('input') input.addEventListener('change', () => { readXlsxFile(input.files[0]).then((rows) => { // `rows` is an array of rows // each row being an array of cells. })})
Example 2: convert table to excel reactjs
npm install react-data-export --save