aretherecookies-mobile/js/constants/CategoryConstants.js
2017-11-11 20:15:19 -06:00

11 lines
462 B
JavaScript

// @flow
export const CATEGORY_BEVERAGES: 'beverages' = 'beverages';
export const CATEGORY_DESSERTS: 'desserts' = 'desserts';
export const CATEGORY_ENTREES: 'entrees' = 'entrees';
export const CATEGORY_OTHER: 'other' = 'other';
export type Category =
| typeof CATEGORY_BEVERAGES
| typeof CATEGORY_DESSERTS
| typeof CATEGORY_ENTREES
| typeof CATEGORY_OTHER;
export const CATEGORIES = [CATEGORY_BEVERAGES, CATEGORY_DESSERTS, CATEGORY_ENTREES, CATEGORY_OTHER];