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