import {__} from '@wordpress/i18n'; import {Campaign} from '@givewp/campaigns/admin/components/types'; import {getGoalDescription, getGoalFormattedValue} from '../utils'; import './styles.scss'; export default ({campaign}: { campaign: Campaign }) => { return (
{getGoalDescription(campaign.goalType)} {getGoalFormattedValue(campaign.goalType, campaign.goalStats.actual)}
{__('Our goal', 'give')} {getGoalFormattedValue(campaign.goalType, campaign.goal)}
); }