Skip to content

Instantly share code, notes, and snippets.

@8lane
Created October 6, 2018 16:44
Show Gist options
  • Save 8lane/c5505b06ea3eb3ba9f72ed3e48274b6a to your computer and use it in GitHub Desktop.
Save 8lane/c5505b06ea3eb3ba9f72ed3e48274b6a to your computer and use it in GitHub Desktop.
const movies = state.movies.map((movie) => {
if (movie.id === action.payload.id) {
return {
...movie,
count: action.payload.count
}
}
return movie
})
return state.merge({ movies })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment