File size: 242 Bytes
7aec436
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
const downloadURL = (filename, url) => {
  const link = document.createElement('a');
  link.download = filename;
  link.href = url;
  document.body.appendChild(link);
  link.click();
  link.remove();
};

export default downloadURL;