import { EnrichedTweet, formatNumber } from 'react-tweet'; import s from './tweet-actions.module.css'; import { TweetActionsCopy } from './TweetActionsCopy'; import { __, sprintf } from '@wordpress/i18n'; export const TweetActions = ({ tweet }: { tweet: EnrichedTweet }) => { const favoriteCount = formatNumber(tweet.favorite_count); return (
{favoriteCount}
{__('Reply')}
); };