import { h } from 'preact'; import PropTypes from 'prop-types'; import { defaulMembershipPropType } from '../../common-prop-types/membership-prop-type'; import ActiveMembershipSection from './ActiveMembershipsSection'; import PendingMembershipSection from './PendingMembershipSection'; import RequestedMembershipSection from './RequestedMembershipSection'; const ChatChannelMembershipSection = ({ pendingMemberships, requestedMemberships, chatChannelAcceptMembership, activeMemberships, removeMembership, currentMembershipRole, toggleScreens, }) => { return (