UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines (8 loc) 221 B
export const downloadFile = (file: File): void => { const a = document.createElement("a"); const url = URL.createObjectURL(file); a.href = url; a.download = file.name; a.click(); URL.revokeObjectURL(url); };