import { h } from 'preact'; import PropTypes from 'prop-types'; const ModFaqSection = ({ email, currentMembershipRole }) => { if (currentMembershipRole === 'member') { return null; } return (

Questions about Connect Channel moderation? Contact {email}

); }; ModFaqSection.propTypes = { email: PropTypes.string.isRequired, currentMembershipRole: PropTypes.string.isRequired, }; export default ModFaqSection;