Download file with JavaScript
/**
* Download File URL
*/
export const downloadFile = (url) => {
const a = document.createElement('A');
a.href = url;
a.download = url.substr(url.lastIndexOf('/') + 1);
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
};