Files
pdfer/webapp/views/components/Preview.js
2017-02-22 00:18:47 +01:00

26 lines
500 B
JavaScript

import { h } from 'preact';
export default props => {
if (props.pdfIsLoading) {
return (
<div>Lade...</div>
);
}
if (props.pdfError) {
return (
<div>{props.pdfError}</div>
);
}
if (!props.pdfUrl) {
return (
<div>Knopf drücken dann gibts hier was zu sehen!</div>
);
}
return (
<iframe src={props.pdfUrl} style="width:700px; height:1050px;" frameborder="0"></iframe>
);
};