import { h } from 'preact'; import PropTypes from 'prop-types'; export const ChannelDescriptionSection = ({ channelName, channelDescription, currentMembershipRole, }) => { return (

{channelName}

{channelDescription}

You are a channel {currentMembershipRole}

); }; ChannelDescriptionSection.propTypes = { channelName: PropTypes.string.isRequired, currentMembershipRole: PropTypes.string.isRequired, channelDescription: PropTypes.string.isRequired, };