Export to CSV button in react table

前端 未结 3 1508
小鲜肉
小鲜肉 2020-12-05 17:25

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

3条回答
  •  北海茫月
    2020-12-05 18:21

    Take a look at this npm library - https://www.npmjs.com/package/react-csv

    For example -

    import {CSVLink, CSVDownload} from 'react-csv';
    
    const csvData =[
      ['firstname', 'lastname', 'email'] ,
      ['John', 'Doe' , 'john.doe@xyz.com'] ,
      ['Jane', 'Doe' , 'jane.doe@xyz.com']
    ];
    Download me
    // or
    
    

提交回复
热议问题