Files
pdfer/webapp/views/components/TextAreaInput.js
2017-02-20 23:16:21 +01:00

14 lines
280 B
JavaScript

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