yapi/client/reducer/news/news.js

21 lines
334 B
JavaScript
Raw Normal View History

2017-07-17 12:15:21 +08:00
import {
FETCH_NEWS_DATA
} from '../../constants/action-types.js'
const initialState = {
newsData: []
}
export default (state = initialState, action) => {
switch (action.type) {
case FETCH_NEWS_DATA: {
return {
...state,
newsData: action.payload
};
}
default:
return state;
}
}