Files
pdfer/webapp/views/components/Input.js
2017-02-18 01:04:47 +01:00

11 lines
226 B
JavaScript

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