import React from 'react'; import { Modal } from 'component/modal'; import { downloadUpgrade, skipUpgrade } from 'actions/app'; class UpgradeModal extends React.Component { render() { const { downloadUpgrade, skipUpgrade } = this.props; return ( {__( 'Your version of LBRY is out of date and may be unreliable or insecure.' )} ); } } export default UpgradeModal;