I need help to extract response data and save them as a gzip file. I have react with the following code. The URL successfully fetched. I want to save the file as zip or excell.
.then((response) => {
saveAs(
new Blob([response.data], {
type:
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;base64,",
}),
"report.xlsx"
);
});
I have file-save
import { saveAs } from "file-saver";