mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
import { h } from 'preact';
|
|
|
|
export default function(props) {
|
|
return (
|
|
<label>
|
|
{props.text}
|
|
<textarea
|
|
class={props.name}
|
|
placeholder={props.placeholder}
|
|
onchange={props.onchange.bind(null, props.name)}
|
|
/>
|
|
</label>
|
|
);
|
|
}
|