Skip to content

Instantly share code, notes, and snippets.

@kiok46
Created June 10, 2018 11:48
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 kiok46/73c0ce0f2d7caf236caa869533862397 to your computer and use it in GitHub Desktop.
Save kiok46/73c0ce0f2d7caf236caa869533862397 to your computer and use it in GitHub Desktop.
Redux, Reactotron, Actions, Reducers and Sagas (2)
import { TEXT_CHANGED } from '../types';
export const textChanged = text => {
return {
type: TEXT_CHANGED,
payload: text
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment