// @flow import React from 'react'; import DateTime from 'component/dateTime'; import FileViewCount from 'component/fileViewCount'; import FileActions from 'component/fileActions'; type Props = { uri: string, livestream?: boolean, activeViewers?: number, isLive?: boolean, }; function FileSubtitle(props: Props) { const { uri, livestream = false, activeViewers, isLive = false } = props; return (
{livestream ? {__('Right now')} : }
); } export default FileSubtitle;