react-excel-renderer icon indicating copy to clipboard operation
react-excel-renderer copied to clipboard

want to get other tabs data as well, but getting first tab data only by default

Open mayurBharodiya opened this issue 2 years ago • 1 comments

fetch(url.xlsx).then((response) => { console.log('qsqwdqf', response) response.blob().then((myBlob) => { console.log('wffswrw', myBlob) ExcelRenderer(myBlob, (err, resp) => { if (err) { console.log(err); } else { setExcel({ cols: resp.cols, rows: resp.rows, }); } }); }); });

it's working for first tab, want to display other tabs data as well from same file on perticular condition, pls help

mayurBharodiya avatar Mar 02 '22 10:03 mayurBharodiya

#45

ofirelarat avatar Nov 26 '22 08:11 ofirelarat