import { h } from 'preact'; import PropTypes from 'prop-types'; import { Button } from '@crayons'; const PersonalSettings = ({ handlePersonChannelSetting, showGlobalBadgeNotification, updateCurrentMembershipNotificationSettings, }) => { return (

Personal Settings

Notifications

); }; PersonalSettings.propTypes = { updateCurrentMembershipNotificationSettings: PropTypes.func.isRequired, showGlobalBadgeNotification: PropTypes.bool.isRequired, handlePersonChannelSetting: PropTypes.func.isRequired, }; export default PersonalSettings;