UNPKG

citizenship_app_news

Version:

News module for Citizenship project application

14 lines (11 loc) 363 B
import * as Actions from '../ActionTypes' import initialStates from './initialStates' const UserReducer = (state = initialStates.user, action) => { switch (action.type) { case Actions.SET_USER_INFO: return Object.assign({}, state, action.payload) default: return state } } export default UserReducer