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