Skip to content

Instantly share code, notes, and snippets.

@mweststrate
Last active November 28, 2019 14:59
Show Gist options
  • Save mweststrate/f7068fa8e783732c61ca32eded68664e to your computer and use it in GitHub Desktop.
Save mweststrate/f7068fa8e783732c61ca32eded68664e to your computer and use it in GitHub Desktop.
immer-producer-4
const byId = (state, action) =>
produce(state, draft => {
switch (action.type) {
case RECEIVE_PRODUCTS:
action.products.forEach(product => {
draft[product.id] = product
})
break
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment