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