Created
November 26, 2017 02:13
-
-
Save denzo/66ed05259fc3e1ea64b649e1adcd77c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/constants/actions.js | |
const STATUS_TO_DO = { value: 0 }; | |
const STATUS_IN_PROGRESS = { value: 10 }; | |
const STATUS_DONE = { value: 50 }; | |
const STATUS_CANT_DO = { value: 60 }; | |
const STATUS_OVERDUE = { value: -1 }; | |
export { | |
STATUS_TO_DO, STATUS_IN_PROGRESS, STATUS_DONE, STATUS_CANT_DO, STATUS_OVERDUE | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment