Skip to content

Instantly share code, notes, and snippets.

@jyotendra
jyotendra / actionExample.js
Last active January 25, 2017 10:07
React-redux action creator
// Example 1 with no payload
export function incrementCounter(){
return {type:"INCREMENT_COUNTER"};
}
/*
The action is only the object that is being return
that is: {type:"INCREMENT_COUNTER"}
Rest of the function is called Action creator - which creates the action
*/