15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
import actions from 'content/actions';
|
|
|
|
const defaultState = {
|
|
keymaps: {},
|
|
};
|
|
|
|
export default function reducer(state = defaultState, action = {}) {
|
|
switch (action.type) {
|
|
case actions.SETTING_SET:
|
|
return Object.assign({}, action.value);
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|