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/reducerSearchMovie.js
2021-10-07 17:06:06 -04:00

12 lines
273 B
JavaScript

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