Skip to content

Instantly share code, notes, and snippets.

View joaobibiano's full-sized avatar

João Bibiano joaobibiano

View GitHub Profile
import jsPDF from 'jspdf';
import 'jspdf-autotable';
const createPDF = (data) => {
const doc = new jsPDF({ orientation: 'landscape' });
const body = data.map(item => {
return [
item.pro_code,
item.pro_description,
item.pro_expiration ? new Date(item.pro_expiration).toLocaleDateString() : null,