Skip to content

Instantly share code, notes, and snippets.

@Oluwa-nifemi
Created July 10, 2020 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oluwa-nifemi/153512bc79aab093d9f7cf7e8842f8f2 to your computer and use it in GitHub Desktop.
Save Oluwa-nifemi/153512bc79aab093d9f7cf7e8842f8f2 to your computer and use it in GitHub Desktop.
Download File React
const link = document.createElement('a');
link.href = "file url";
link.download = 'file name';
document.body.appendChild(link);
link.click();
link.remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment