mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-08 01:12:49 +01:00
9 lines
292 B
JavaScript
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>
|
|
);
|
|
}
|