// @flow import React from 'react'; import Button from 'component/button'; import { formatLbryUrlForWeb } from 'util/url'; import { withRouter } from 'react-router'; import { URL } from 'config'; import * as ICONS from 'constants/icons'; type Props = { uri: string, title: ?string, }; function fileViewerEmbeddedTitle(props: Props) { const { uri, title } = props; const lbrytvLink = `${URL}${formatLbryUrlForWeb(uri)}?src=embed`; return (
); } export default withRouter(fileViewerEmbeddedTitle);