Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { combineReducers } from 'redux';
import * as types from '../action-types';
export const bySite = ( state = {}, { type, siteId, suggestions } ) => {
if ( types.SUGGESTIONS_STORE === type ) {
return {
...state,
[ siteId ]: suggestions,
};
}
return state;
};
export default combineReducers( {
bySite,
} );