import { Component, h } from 'preact'; export default props => { if (props.pdfIsLoading) { return (
Lade...
); } if (props.pdfError) { return (
{props.pdfError}
); } if (!props.pdfUrl) { return (
Knopf drücken dann gibts hier was zu sehen!
); } return ( ); };