Last active
November 28, 2019 14:59
-
-
Save mweststrate/f7068fa8e783732c61ca32eded68664e to your computer and use it in GitHub Desktop.
immer-producer-4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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