import PropTypes from 'prop-types'; import { h } from 'preact'; import { forwardRef } from 'preact/compat'; export const SearchForm = forwardRef( ({ searchTerm, onSearch, onSubmitSearch }, ref) => (
), ); SearchForm.propTypes = { searchTerm: PropTypes.string.isRequired, onSearch: PropTypes.func.isRequired, onSubmitSearch: PropTypes.func.isRequired, };