Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // return Object.assign({}, state, {
  2. // articles: state.articles.concat(action.payload),
  3. // });
  4. return {
  5. ...state,
  6. articles: state.articles.concat(action.payload),
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement