export function generatePdf(state){ return fetch('//localhost:5000/pdf/generate/brief', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(state) }).then(function(res) { if (res.status !== 200) { console.error('request failed'); return; } return res.json(); }); }