import React from 'react'; import { Modal, ModalHeader, ModalBody } from 'reactstrap'; class ZipDownloadDialog extends React.Component { toggle = () => { this.props.onCancelDownload(); } render() { return (
{this.props.progress}
); } } export default ZipDownloadDialog;