Created
January 22, 2019 14:12
-
-
Save talyssonoc/b8ce40c649efcd659621002d4e690f64 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
export const AUTH = { | |
SIGN_IN_REQUEST: 'SIGN_IN_REQUEST', | |
SIGN_IN_SUCCESS: 'SIGN_IN_SUCCESS', | |
SIGN_IN_ERROR: 'SIGN_IN_ERROR' | |
}; | |
export const ARTICLE = { | |
LOAD_ARTICLE_REQUEST: 'LOAD_ARTICLE_REQUEST', | |
LOAD_ARTICLE_SUCCESS: 'LOAD_ARTICLE_SUCCESS', | |
LOAD_ARTICLE_ERROR: 'LOAD_ARTICLE_ERROR' | |
}; | |
export const EDITOR = { | |
UPDATE_FIELD: 'UPDATE_FIELD', | |
ADD_TAG: 'ADD_TAG', | |
REMOVE_TAG: 'REMOVE_TAG', | |
RESET: 'RESET' | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment