blob: 3774e9b562c91994d224a756fc2d8952c3f26a1d (
plain)
1
2
3
4
5
6
7
8
9
10
|
const downloadFile = (content: string, filename: string) => {
const a = document.createElement('a');
const file = new Blob([content], {type: 'text'});
a.href= URL.createObjectURL(file);
a.download = filename;
a.click();
}
export default downloadFile
|