Guest User

Untitled

a guest
Jan 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const byId = (state, action) =>
  2. produce(state, draft => {
  3. switch (action.type) {
  4. case RECEIVE_PRODUCTS:
  5. action.products.forEach(product => {
  6. draft[product.id] = product
  7. })
  8. break
  9. }
  10. })
Add Comment
Please, Sign In to add comment