Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
226 Bytes
const AddToList = (data) => {
return {
type: "ADD",
data: data,
};
};
const RemoveList = (id) => {
return {
type: "REMOVE",
id: id,
};
};
export { AddToList, RemoveList };