Files
pdfer/webapp/views/components/TextAreaInput.js
2017-02-19 22:06:22 +01:00

11 lines
217 B
JavaScript

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