const React = require('react'); const {Modal} = require('react-bootstrap'); const DestructiveConfirmationModal = require('./DestructiveConfirmModal.jsx'); function RemoveServerModal(props) { const {serverName, ...rest} = props; return (

{'This will remove the server from your Desktop App but will not delete any of its data' + ' - you can add the server back to the app at any time.'}

{'Confirm you wish to remove the '}{serverName}{' server?'}

)} /> ); } RemoveServerModal.propTypes = { serverName: React.PropTypes.string.isRequired }; module.exports = RemoveServerModal;