import { SET_INPUT_VALUE } from "../types/index"; export default (state, action) => { const { payload } = action; switch (action.type) { case SET_INPUT_VALUE: { const { name, value } = payload; return { ...state, [name]: value, }; } default: return state; } };