16 lines
355 B
JavaScript
16 lines
355 B
JavaScript
import { h } from 'preact';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const NextPageButton = ({ onClick }) => (
|
|
<div className="classifieds-load-more-button">
|
|
<button onClick={onClick} type="button">
|
|
Load More Listings
|
|
</button>
|
|
</div>
|
|
);
|
|
|
|
NextPageButton.propTypes = {
|
|
onClick: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default NextPageButton;
|