AllenYuan

auth - homereducer

Apr 24th, 2020
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export default (state = {}, action) => {
  2.   switch (action.type) {
  3.     // HOME_PAGE_LOADED => put articles in state.home
  4.     case 'HOME_PAGE_LOADED':
  5.       return {
  6.         ...state,
  7.         articles: action.payload.articles
  8.       };
  9.   }
  10.   return state;
  11. };
Advertisement
Add Comment
Please, Sign In to add comment