Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
398 Bytes
import SearchActionTypes from "./search-types";
const INITIAL_STATE = {
searchItems: []
};
const searchReducer = (state = INITIAL_STATE, action) => {
const { type, payload } = action;
switch (type) {
case SearchActionTypes.SET_SEARCH_DATA: {
return { ...state, searchItems: payload };
}
default:
return state;
}
};
export default searchReducer;