no need for pdf-js

This commit is contained in:
Thomas Ruoff
2017-02-19 22:06:22 +01:00
parent 8542c0bf2d
commit 32d226259a
8 changed files with 58 additions and 55078 deletions

View File

@@ -0,0 +1,10 @@
import { h } from 'preact';
export default function(props) {
return (
<label>
{props.text}:
<textarea onchange={props.onchange.bind(null, props.name)} />
</label>
);
}