mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +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();
 | 
						|
};
 |