Reactjs Component to pdf
import html2canvas from “html2canvas”; import jsPDF from “jspdf”; async function getPdfDownload() { const content = document.getElementById(“contents”); if (!content) return; const scale = 2; const canvas = await html2canvas(content, { scale: scale, useCORS: true, logging: false, windowWidth: content.scrollWidth, windowHeight: content.scrollHeight, }); const imgData = canvas.toDataURL(“image/png”); const pdf = new jsPDF({ unit: “px”, format: “a4”, orientation: “portrait”, […]