Preview: modalReducer.js
Size: 394 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/lib/frontend/store/reducers/modalReducer.js
import { HIDE_MODAL, SHOW_MODAL } from '../actions/modal.js';
export const modalReducer = (state = {
show: false
}, action) => {
switch (action.type) {
case SHOW_MODAL:
{
return {
...action.data,
show: true
};
}
case HIDE_MODAL:
{
return {
show: false
};
}
default:
return state;
}
};
Directory Contents
Dirs: 0 × Files: 16