Guest User

Untitled

a guest
Dec 12th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. export default function paintingReducer(
  2. state = {
  3. painting_name: "",
  4. image: "",
  5. year: null,
  6. }, action) {
  7. switch ( action.type ) {
  8. case 'GET_PAINTING_SUCCESS':
  9. return action.painting;
  10. default:
  11. return state;
  12. }
  13. }
Add Comment
Please, Sign In to add comment