// Load more button for item list import { h } from 'preact'; import { PropTypes } from 'preact-compat'; export const ItemListLoadMoreButton = ({ show, onClick }) => { if (!show) { return ''; } return (