lbry-desktop/ui/component/claimEffectiveAmount/view.jsx
Sean Yesmunt 92d1d19bfb fix typo
2020-02-12 11:00:17 -05:00

20 lines
291 B
JavaScript

// @flow
import React from 'react';
type Props = {
uri: string,
claim: ?Claim,
};
function ClaimRepostAuthor(props: Props) {
const { claim } = props;
if (!claim) {
return null;
}
return <span>{claim.meta.effective_amount} LBC</span>;
}
export default ClaimRepostAuthor;