import React from 'react'; import { numberWithCommas } from 'App/utils'; function AvgLabel({ className = '', text, count, unit }) { return (
{text} {count ? numberWithCommas(Math.round(count)) : 0} {unit && {unit}}
); } export default AvgLabel;