() => {
const mockData = [{
"ID": 1,
"First Name": "Sarajane",
"Last Name": "Wheatman",
"Email": "swheatman0@google.nl",
"Language": "Zulu",
"IP Address": "40.98.252.240"
},
{
"ID": 2,
"First Name": "Linell",
"Last Name": "Humpherston",
"Email": "lhumpherston1@google.com.br",
"Language": "Czech",
"IP Address": "82.225.151.150"
}]
return (
<button onClick={() => jsonToCsvExport({ data: mockData })}>
Download Data
</button>
)
}