Skip to content

Instantly share code, notes, and snippets.

@sajithdilshan
Created January 27, 2018 19:45
Show Gist options
  • Save sajithdilshan/6e23f6af37ccb6e653328f0d6f08ef77 to your computer and use it in GitHub Desktop.
Save sajithdilshan/6e23f6af37ccb6e653328f0d6f08ef77 to your computer and use it in GitHub Desktop.
import dispatcher from "../Dispatcher";
export const COLOR_APP_ACTIONS = {
CHANGE_COLOR: 'colorAppActions.ChangeColor'
};
export function changeColor(colorName) {
dispatcher.dispatch({
type: COLOR_APP_ACTIONS.CHANGE_COLOR,
value: colorName
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment