import * as types from '../constants/actionTypes'; export const autoSubmit = (state = false, action) => { switch (action.type) { case types.USER_TOGGLE_AUTO_SUBMIT: return action.value; default: return state; } }