From d4d13730d5ea98485f775bc19be808595ed36a55 Mon Sep 17 00:00:00 2001 From: George Lima Date: Wed, 28 Nov 2018 19:00:40 -0300 Subject: [PATCH] feature: add theme constants --- app/constants/themes.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 app/constants/themes.js diff --git a/app/constants/themes.js b/app/constants/themes.js new file mode 100644 index 0000000..34bbef4 --- /dev/null +++ b/app/constants/themes.js @@ -0,0 +1,4 @@ +// @flow + +export const LIGHT = 'light'; +export const DARK = 'dark';