// Copyright (c) 2015-2016 Yuya Ochiai // Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import {FormattedMessage, useIntl} from 'react-intl'; import DestructiveConfirmationModal from './DestructiveConfirmModal'; type Props = { show: boolean; onHide: () => void; onAccept: () => void; onCancel: () => void; }; function RemoveServerModal(props: Props) { const intl = useIntl(); const {...rest} = props; return (

)} /> ); } export default RemoveServerModal;