Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- export default (state = {}, action) => {
- switch (action.type) {
- // HOME_PAGE_LOADED => put articles in state.home
- case 'HOME_PAGE_LOADED':
- return {
- ...state,
- articles: action.payload.articles
- };
- }
- return state;
- };
Advertisement
Add Comment
Please, Sign In to add comment