mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
7 lines
222 B
JavaScript
7 lines
222 B
JavaScript
export const downloadCsvFile = (fileName, fileContent) => {
|
|
const link = document.createElement('a');
|
|
link.download = fileName;
|
|
link.href = `data:text/csv;charset=utf-8,` + encodeURI(fileContent);
|
|
link.click();
|
|
};
|