import { h, Component } from 'preact' class FileUpload extends Component { constructor(props){ super(props) this.handleChange = this.handleChange.bind(this) } handleChange(e){ this.props.onChange && this.props.onChange() } render() { return (
) } } export default FileUpload