import { h } from 'preact';
import PropTypes from 'prop-types';
const PersonalSettings = ({
handlePersonChatChennelSetting,
showGlobalBadgeNotification,
updateCurrentMembershipNotificationSettings,
}) => {
return (
);
};
PersonalSettings.propTypes = {
updateCurrentMembershipNotificationSettings: PropTypes.func.isRequired,
showGlobalBadgeNotification: PropTypes.bool.isRequired,
handlePersonChatChennelSetting: PropTypes.func.isRequired,
};
export default PersonalSettings;