8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
|
export const SIGN_UP = {
|
||
|
SUCCESS: 'SIGN_UP_SUCCESS',
|
||
|
FAILURE: 'SIGN_UP_FAILURE',
|
||
|
PENDING: 'SIGN_UP_PENDING',
|
||
|
isPending: 'sign_up_pending',
|
||
|
errors: 'sign_up_errors'
|
||
|
}
|