You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. import {
  2. SET_USER,
  3. SET_USER_ERROR,
  4. } from './userActionConstants';
  5. export const setUser = (payload) => ({
  6. type: SET_USER,
  7. payload,
  8. });
  9. export const setUserError = (payload) => ({
  10. type: SET_USER_ERROR,
  11. payload,
  12. });