import React from 'react'; import { PropTypes } from 'prop-types'; import './style.scss'; const SearchBar = props => (

Browse Archives

{ props.isSearchActive && ( // eslint-disable-next-line Clear search ) }
); SearchBar.propTypes = { term: PropTypes.string.isRequired, isSearchActive: PropTypes.bool.isRequired, onSearchInputChange: PropTypes.func.isRequired, clearSearchInput: PropTypes.func.isRequired, }; export default SearchBar;