Skip to content

Instantly share code, notes, and snippets.

@quicksnap
Last active January 16, 2018 00:10
Show Gist options
  • Save quicksnap/4051b5f6a681d04b84d940fa3901ada2 to your computer and use it in GitHub Desktop.
Save quicksnap/4051b5f6a681d04b84d940fa3901ada2 to your computer and use it in GitHub Desktop.
function addToCart(productIds: string[]) {
return {
type: 'ADD_TO_CART',
payload: {
productIds: productIds,
timeAdded: new Date(),
},
};
}
function filterItems(filterType: FilterType) {
return {
type: 'FILTER_ITEMS',
payload: {
filterType: filterType,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment