aretherecookies-mobile/js/helpers/OrderByHelpers.js

13 lines
274 B
JavaScript
Raw Permalink Normal View History

2019-06-22 15:48:52 +00:00
import type { OrderBy } from '../constants/OrderByConstants';
export const getOrderbyText = (orderby: Orderby) => {
switch (orderby) {
case 'quantity':
return 'Quantity';
case 'lastupdated':
return 'Most Recently Updated';
default:
return 'Distance';
}
};