Generating a PDF file from React Components
Rendering react as pdf is generally a pain, but there is a way around it using canvas. The idea is to convert : HTML -> Canvas -> PNG (or JPEG) -> PDF To achieve the above, you’ll need : html2canvas & jsPDF import React, {Component, PropTypes} from ‘react’; // download html2canvas and jsPDF and save … Read more