I am new to React.
I am trying to export JSON data that is displayed using the 'react-data-table-component' to a CSV file.
I have followed the example from this link by copying the exact code snippet provided. Below is my code snippet and the corresponding error occurring during compilation.
import Export from "react-data-table-component"
import DataTable, { TableColumn, TableStyles } from "react-data-table-component";
import React from "react";
---code declarations---
const actionsMemo = React.useMemo(() => <Export onExport={() => downloadCSV(customerList)} />, []);
return (
<>
<Row>
<Col lg={3}>
<Box className="box" sx={{ display: 'flex', alignItems: 'flex-end' }}>
<TextField id="input-with-sx" label="Input National ID" variant="standard" />
<PersonSearchIcon sx={{ color: 'action.active', mr: 1, my: 0.5 }} />
</Box>
</Col>
</Row>
<br/>
<Row>
<Col lg={12}>
<div className="card mb-3">
<div className="card-body">
<DataTable columns={columns} data={customerList}
pagination customStyles={mycustomStyles} actions={actionsMemo}/>
</div>
</div>
</Col>
</Row>
</>
);
Could someone help me in identifying any other modules that I may be missing in order to have an export data functionality. Thanks in advance.