Skip to content
Snippets Groups Projects
NewsReducer.js 260 B
Newer Older
  • Learn to ignore specific revisions
  • import { GET_NEWS } from '../actions/types';
    
    const INITIAL_STATE = [];
    
    export default (state = INITIAL_STATE, action) => {
      switch (action.type) {
        case GET_NEWS:
          return [ ...state, ...action.payload.data ];
        default:
          return state;
      }
    };