import { h, Component } from 'preact'; export default class Input extends Component { constructor(props) { super(props); this.autoResize = this.autoResize.bind(this); } autoResize() { this.fieldNode.style.height = ''; this.setState({ height: this.fieldNode.scrollHeight }); } render(props, { height }) { return (