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