I create csv file download using CSVLink but not save to specific directory. Someone can help me how to give directory path ? (eg → C:\Users\project\csv)
import {CSVLink, CSVDownload} from 'react-csv';
const csvData =[
['firstname', 'lastname', 'email'] ,
['Ahmed', 'Tomi' , 'ah@smthing.co.com'] ,
['Raed', 'Labes' , 'rl@smthing.co.com'] ,
['Yezzi','Min l3b', 'ymin@cocococo.com']
];
<CSVLink data={csvData} filename={"test.csv"}>Download me</CSVLink>
'''