// @flow import React from 'react'; import { Modal } from 'modal/modal'; type Props = { uri: string, metadata: StreamMetadata, closeModal: () => void, }; class ModalFileTimeout extends React.PureComponent { render() { const { uri, metadata: { title }, closeModal, } = this.props; return (

{__('LBRY was unable to download the stream')}:

{title ? `"${title}"` : uri}

); } } export default ModalFileTimeout;