From bd8b3783d8fc66c1fb13b1b3e4748576b6a35a2c Mon Sep 17 00:00:00 2001 From: George Lima Date: Thu, 20 Dec 2018 14:17:22 -0300 Subject: [PATCH] feature: add fees constants --- app/constants/fees.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/constants/fees.js diff --git a/app/constants/fees.js b/app/constants/fees.js new file mode 100644 index 0000000..498e95d --- /dev/null +++ b/app/constants/fees.js @@ -0,0 +1,8 @@ +// @flow + +export default { + LOW: 1, + MEDIUM: 5, + HIGH: 9, + CUSTOM: 'custom', +};