rsnext/examples/form-handler/actions/formActionsCreators.js

6 lines
166 B
JavaScript
Raw Normal View History

import { INPUT_VALUE } from '../constants'
export const inputChange = (title, name, val) => dispatch => {
return dispatch({type: INPUT_VALUE, title, name, val})
}