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

Personal Settings

Notifications

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