Skip to content

Instantly share code, notes, and snippets.

@manashcse11
Created September 1, 2020 17:32
Show Gist options
  • Save manashcse11/9ff4803c133be5285e5fcf6192ea5f89 to your computer and use it in GitHub Desktop.
Save manashcse11/9ff4803c133be5285e5fcf6192ea5f89 to your computer and use it in GitHub Desktop.
import {ADD_USER_DATA} from "../actionTypes";
const initialState = {
user: null
};
const User = (state = initialState, action) => {
switch (action.type) {
case ADD_USER_DATA: {
const { user } = action.payload;
return {
...state,
user: user
};
}
default:
return state;
}
}
export default User;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment