Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import type { ModalTypes } from 'src/components/modals/modalRoot';
export const openModal = (name: ModalTypes, props?: Object) => {
return {
type: 'SHOW_MODAL',
modalType: name,
modalProps: props || {},
};
};
export const closeModal = () => ({
type: 'HIDE_MODAL',
});