Created
January 27, 2018 19:45
-
-
Save sajithdilshan/6e23f6af37ccb6e653328f0d6f08ef77 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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