19 lines
291 B
JavaScript
19 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;
|