You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/components/scratchpad/reducers/state.ts

11 lines
236 B
TypeScript

export default function reducer(state = {}, action: any = {}) {
if (action.type === 'SCRATCHPAD_STATE_UPDATE') {
const { key, value } = action.payload;
return {
...state,
[key]: value,
};
}
return state;
}