mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
import { Component, h } from 'preact';
|
|
|
|
export default props => {
|
|
if (!props.pdfUrl) {
|
|
return '';
|
|
}
|
|
|
|
return (
|
|
<embed src={props.pdfUrl} width="100%" height="100%"/>
|
|
);
|
|
};
|