vn-verdnaturachat/app/reducers/reducers.js

14 lines
281 B
JavaScript

import * as types from '../constants/types';
import initialState from './initialState';
export default function settings(state = initialState.settings, action) {
if (action.type === types.SET_ALL_SETTINGS) {
return {
...state,
...action.payload
};
}
return state;
}