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.

13 lines (11 loc) 275 B
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); } export { download }; //# sourceMappingURL=download.js.map