index.js 358 B

1234567891011121314151617
  1. import * as types from '../../../constants';
  2. // all actions for signing in
  3. export const signInRequest = () => ({
  4. type: types.SIGN_IN_REQUEST
  5. })
  6. export const signInRequestSucces = payload => ({
  7. type: types.SIGN_IN_REQUEST_SUCCESS,
  8. payload
  9. })
  10. export const signInRequestFailure = error => ({
  11. type: types.SIGN_IN_REQUEST_FAILURE,
  12. error
  13. })