import React from "react"; import { Modal } from "modal/modal"; import { Line } from "rc-progress"; import Link from "component/link/index"; const { ipcRenderer } = require("electron"); class ModalAutoUpdateDownloaded extends React.PureComponent { render() { return ( { ipcRenderer.send("autoUpdate"); }} >

{__("LBRY Leveled Up")}

{__( "A new version of LBRY has been downloaded and is ready to install." )}

); } } export default ModalAutoUpdateDownloaded;