Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
241 Bytes
import ListActionTypes from './list-types';
export const addItem = item => ({
type: ListActionTypes.ADD_ITEM,
payload: item
});
export const removeItem = item => ({
type: ListActionTypes.REMOVE_ITEM,
payload: item
});