File size: 225 Bytes
f5071ca | 1 2 3 4 5 6 7 8 9 10 11 | import { RECEIVE_FEED_POSTS } from '../actions/post_actions';
export default (state = {}, action) => {
switch (action.type) {
case RECEIVE_FEED_POSTS:
return action.posts;
default:
return state;
}
};
|