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