filestash/client/pages/viewerpage/pdfviewer.js
2017-06-29 13:00:16 +10:00

9 lines
292 B
JavaScript

import React from 'react';
export const PDFViewer = (props) => {
return (
<div style={{textAlign: 'center', background: '#525659', height: '100%'}}>
<embed src={props.data} type="application/pdf" style={{height: '100%', width: '100%'}}></embed>
</div>
);
}