Files
cellxgene/src/reducers/controls.js
2017-11-06 00:10:55 -08:00

15 lines
242 B
JavaScript

const Controls = (state = {
color: null,
}, action) => {
switch (action.type) {
case "color changed":
return Object.assign({}, state, {
color: action.data,
});
default:
return state;
}
};
export default Controls;