mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-20 03:18:12 +08:00
15 lines
242 B
JavaScript
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;
|