Skip to content

Instantly share code, notes, and snippets.

@AndrejGajdos
Created June 24, 2018 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrejGajdos/e73d81235b8421cedab6dee11933ad9f to your computer and use it in GitHub Desktop.
Save AndrejGajdos/e73d81235b8421cedab6dee11933ad9f to your computer and use it in GitHub Desktop.
import * as ActionTypes from 'constants/actionTypes';
export const login = (email, password) => ({
type: ActionTypes.LOGIN_REQUESTED,
email,
password,
});
export const logout = () => ({
type: ActionTypes.LOGOUT_REQUESTED,
});
export const getProfile = () => ({
type: ActionTypes.PROFILE_REQUESTED,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment