UNPKG

@liveblocks/react-ui

Version:

A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.

15 lines (12 loc) 299 B
'use strict'; function download(url, name) { const a = document.createElement("a"); a.href = url; a.download = name; a.style.display = "none"; document.body.appendChild(a); a.click(); document.body.removeChild(a); } exports.download = download; //# sourceMappingURL=download.cjs.map