Skip to content

Instantly share code, notes, and snippets.

@quicksnap
Created January 15, 2018 23:28
Show Gist options
  • Save quicksnap/c3cd6b5c5e44918e80c57bb00e665e33 to your computer and use it in GitHub Desktop.
Save quicksnap/c3cd6b5c5e44918e80c57bb00e665e33 to your computer and use it in GitHub Desktop.
function reducer(state: MyAppState, action: Action) {
// addToCart is our action creator *function*
if (isAction(action, addToCart)) {
const productIds = action.payload.productIds; // Safely typed!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment