// @flow import React from 'react'; import FileDownloadLink from 'component/fileDownloadLink'; import * as RENDER_MODES from 'constants/file_render_modes'; import Card from 'component/common/card'; import Button from 'component/button'; type Props = { uri: string, renderMode: string, }; export default function FileRenderDownload(props: Props) { const { uri, renderMode } = props; // @if TARGET='web' if (RENDER_MODES.UNSUPPORTED_IN_THIS_APP.includes(renderMode)) { return ( {__( 'This content can be downloaded from lbry.tv, but not displayed. It will display in LBRY Desktop, an app for desktop computers.' )}

} actions={
} /> ); } // @endif return } />; }