Skip to content

Instantly share code, notes, and snippets.

@somidad
Last active November 6, 2023 12:47
Show Gist options
  • Save somidad/10bcce0242e8949bd8a4244a38069699 to your computer and use it in GitHub Desktop.
Save somidad/10bcce0242e8949bd8a4244a38069699 to your computer and use it in GitHub Desktop.
Simple FileSaver.js (https://www.npmjs.com/package/file-saver) example
import { saveAs } from "file-saver";
function DownloadContent() {
const download = () => {
const blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
saveAs(blob, "hello, world.txt");
}
return (
<button onClick={download}>Download</button>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment