import React, { useState } from 'react' import PropTypes from 'prop-types'; /** * Search component form that can be customized with change and submit handlers * @param {object} props * { * handleChange: A form input change event handler. This function is executed when the * search input or order by input changes. * handleSubmit: A form submit event handler. This function is executed when the * search form is submitted. * } * @returns */ const Form = ({ handleSubmit }) => { const [searchQuery, setSearchQuery] = useState("") return (
); }; Form.propTypes = { handleSubmit: PropTypes.func.isRequired } export default Form;