// Copyright (c) 2015-2016 Yuya Ochiai // Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import {Button, Navbar, ProgressBar} from 'react-bootstrap'; type InstallButtonProps = { notifyOnly?: boolean; onClickInstall?: React.MouseEventHandler ); } return ( ); } type UpdaterPageProps = { appName: string; notifyOnly?: boolean; isDownloading?: boolean; progress?: number; onClickInstall?: React.MouseEventHandler ); } else { footer = (
); } return (

{'New update is available'}

{`A new version of the ${props.appName} is available!`}

{'Read the '} {'release notes'} {' to learn more.'}

{footer}
); } export default UpdaterPage;