// @flow import React from 'react'; import HelpLink from 'component/common/help-link'; type Props = { viewCount: string, }; function FileViewCount(props: Props) { const { viewCount } = props; return ( {viewCount !== 1 ? __('%view_count% Views', { view_count: viewCount }) : __('1 View')} ); } export default FileViewCount;