Skip to content

Instantly share code, notes, and snippets.

@ldmarz
Created August 31, 2018 19:11
Show Gist options
  • Save ldmarz/f1b91bef70213499e07b325dca3fb0d9 to your computer and use it in GitHub Desktop.
Save ldmarz/f1b91bef70213499e07b325dca3fb0d9 to your computer and use it in GitHub Desktop.
import { GODOWN, GOUP, ELEMENTS} from '../actions.type';
function actionGoUp() {
return {
type: GODOWN
};
}
function actionGoDown() {
return {
type: GOUP
};
}
function setElements() {
return {
type: ELEMENTS
};
}
export default { actionGoUp, actionGoDown, setElements};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment