lbry-desktop/ui/component/fileViewCount/view.jsx

21 lines
433 B
React
Raw Normal View History

2020-01-06 19:32:35 +01:00
// @flow
import React from 'react';
import HelpLink from 'component/common/help-link';
type Props = {
viewCount: string,
};
function LayoutWrapperDocument(props: Props) {
const { viewCount } = props;
return (
<span>
{viewCount !== 1 ? __('%view_count% Views', { view_count: viewCount }) : __('1 View')}
<HelpLink href="https://lbry.com/faq/views" />
</span>
);
}
export default LayoutWrapperDocument;