case ADD_POST: {
let newPost= {
id: action.id,
title: action.title,
text: action.text,
img: action.img
}
return {
...state,
posts: [...state.posts, newPost]
}
}
export const addPost = (id, title, text, img) => ({
type: ADD_POST,
id,
title,
text,
img
});