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/reducerRomanceMovies.js
2020-05-14 17:38:17 -04:00

12 lines
281 B
JavaScript

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