Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
316 Bytes
import { OPEN_MODAL, CLOSE_MODAL } from '../actions/modal_actions';
export default function modalReducer(state = null, action) {
switch (action.type) {
case OPEN_MODAL:
return action.modal;
case CLOSE_MODAL:
return null;
default:
return state;
}
}