import React from 'react'; import { Modal } from 'modal/modal'; import Link from 'component/link/index'; class ModalIncompatibleDaemon extends React.PureComponent { render() { const { quit, quitAnyDaemon } = this.props; return ( {__( 'This browser is running with an incompatible version of the LBRY protocol and your install must be repaired. ' )} ); } } export default ModalIncompatibleDaemon;