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

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

{`"${title}"`}

); } } export default ModalFileTimeout;