I have created an excel file using react-export-excel third-party library. But I need to create .xls file, not .xlsx file. So how to Configure them?
<ExcelFile element={<MDBIcon icon="file-excel" size="2x" className="green-text" />}>
<ExcelSheet data={props.email} name="Employees">
<ExcelColumn label="Email" value="Email" />
<ExcelColumn label="Quota" value="Quota" />
</ExcelSheet>
</ExcelFile>