import React from 'react'; import PropTypes from 'prop-types'; const SearchBar = ({ onChange }) => ( ); export default SearchBar; SearchBar.propTypes = { onChange: PropTypes.func, }; SearchBar.defaultProps = { onChange: () => null, };