// @flow import * as PAGES from 'constants/pages'; import * as CS from 'constants/claim_search'; import React from 'react'; import ClaimUri from 'component/claimUri'; import Button from 'component/button'; type Props = { uri: string, claim: ?Claim, }; function FileRenderHeader(props: Props) { const { uri, claim } = props; return (
{claim && claim.meta.reposted > 0 && (
); } export default FileRenderHeader;