Skip to content

Instantly share code, notes, and snippets.

@kasprownik
Last active January 29, 2016 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasprownik/6b404b5aeabeeb08ad84 to your computer and use it in GitHub Desktop.
Save kasprownik/6b404b5aeabeeb08ad84 to your computer and use it in GitHub Desktop.
// src/actions.js
import * as c from './constants';
export function update(name, value) {
return dispatch => dispatch({
type: c.FORM_UPDATE_VALUE,
name, value
});
}
export function reset() {
return dispatch => dispatch({
type: c.FORM_RESET
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment