// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React, {type Dispatch, type SetStateAction} from 'react'; import {useIntl} from 'react-intl'; import SettingBlock from '@components/settings/block'; import SettingOption from '@components/settings/option'; import SettingSeparator from '@components/settings/separator'; import {t} from '@i18n'; const replyHeaderText = { id: t('notification_settings.mention.reply'), defaultMessage: 'Send reply notifications for', }; type ReplySettingsProps = { replyNotificationType: string; setReplyNotificationType: Dispatch>; } const ReplySettings = ({replyNotificationType, setReplyNotificationType}: ReplySettingsProps) => { const intl = useIntl(); return ( ); }; export default ReplySettings;