Skip to content

Instantly share code, notes, and snippets.

@toruticas
Created May 27, 2019 02:20
Show Gist options
  • Save toruticas/6be07f062842d5408e7371d28d456b9e to your computer and use it in GitHub Desktop.
Save toruticas/6be07f062842d5408e7371d28d456b9e to your computer and use it in GitHub Desktop.
Redux Architecture Example (actions)
export const changeInputValue = value => ({
type: 'CHANGE_INPUT_VALUE',
value,
});
export const addItem = item => ({
type: 'ADD_ITEM',
item,
});
export const removeItem = id => ({
type: 'REMOVE_ITEM',
id,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment