import React from 'react'; import {formatAbbreviatedNumber} from 'app/utils/formatters'; type Props = { value: string | number; className?: string; }; function Count(props: Props) { const {value, className} = props; return ( {formatAbbreviatedNumber(value)} ); } export default Count;