import { Fragment } from 'react' import { FormattedNumber } from 'react-intl' export const shortNumberFormat = number => { if (number < 1000) { return } return ( K ) }