JSFiddle - React, Tailwind, and code Playground

by dennismadsen

HTML

<script src="//rawgit.com/eligrey/FileSaver.js/master/FileSaver.min.js"></script>
<button type="button" onclick="download()">Click Me!</button>

JavaScript

function download() {
    var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
    saveAs(blob, "hello world.txt");
}