Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
225 Bytes
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;
}
};