Skip to content

Instantly share code, notes, and snippets.

@quicksnap
Created January 15, 2018 23:28
Show Gist options
  • Save quicksnap/fa68d9a7c129d79fbc8cb28ba4f1899b to your computer and use it in GitHub Desktop.
Save quicksnap/fa68d9a7c129d79fbc8cb28ba4f1899b to your computer and use it in GitHub Desktop.
function reducer(state: MyAppState, action: Action) {
if (isAction(action, 'ADD_TO_CART')) {
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