This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Netflix-Clone/src/store/reducers/reducerComedyMovies.js
2019-03-30 16:30:05 -04:00

11 lines
277 B
JavaScript

import { FETCH_COMEDY_MOVIES } from '../actions/index';
export default function (state = {}, action) {
switch (action.type) {
case FETCH_COMEDY_MOVIES:
const data = action.payload.data.results;
return { ...state, data }
default:
return state;
}
}