Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
323 Bytes
import SearchActionTypes from './search-types';
import {fetchSearchData} from '../../Services/SearchService';
export function getSearchData(value) {
return (dispatch) => {
fetchSearchData(value).then(data => {
dispatch({ type: SearchActionTypes.SET_SEARCH_DATA, payload: data.results });
});
}
}