Skip to content

Instantly share code, notes, and snippets.

@kiok46
Created June 10, 2018 10:48
Show Gist options
  • Save kiok46/a9f32faf2d0b533f0a75416b734ff581 to your computer and use it in GitHub Desktop.
Save kiok46/a9f32faf2d0b533f0a75416b734ff581 to your computer and use it in GitHub Desktop.
Redux, Store, Actions, Reducers and logger: Get Started and a little further (1)
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