// 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 {Button, Modal} from 'react-bootstrap'; import DestructiveConfirmationModal from './DestructiveConfirmModal'; type Props = { show: boolean; serverName: string; onHide: () => void; onAccept: React.MouseEventHandler