import { h } from 'preact'; import PropTypes from 'prop-types'; export const CommentsCount = ({ count, articlePath, icon, className }) => { if (count > 0) { return (
chat {count}
); } return null; }; CommentsCount.defaultProps = { count: 0, className: null, }; CommentsCount.propTypes = { count: PropTypes.number, articlePath: PropTypes.string.isRequired, icon: PropTypes.string.isRequired, className: PropTypes.string, }; CommentsCount.displayName = 'CommentsCount';