99ab165a8f
Clearer display of takeover amounts Repost from empty search result, from top page, or from claim review changes final touches bump empty comment copy they emptier validation cleanup extra
20 lines
387 B
JavaScript
20 lines
387 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import CreditAmount from 'component/common/credit-amount';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: ?Claim,
|
|
};
|
|
|
|
function ClaimEffectiveAmount(props: Props) {
|
|
const { claim } = props;
|
|
|
|
if (!claim) {
|
|
return null;
|
|
}
|
|
|
|
return <CreditAmount amount={Number(claim.meta.effective_amount || claim.amount)} />;
|
|
}
|
|
|
|
export default ClaimEffectiveAmount;
|