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

Browse Archives

); SearchBar.propTypes = { term: PropTypes.string.isRequired, onInputChange: PropTypes.func.isRequired, } export default SearchBar;