Preview: drawerReducer.js
Size: 352 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/lib/frontend/store/reducers/drawerReducer.js
import { DRAWER_PREROUTE_SET } from '../actions/set-drawer-preroute.js';
export const drawerReducer = (state = {
previousRoute: null
}, action) => {
switch (action.type) {
case DRAWER_PREROUTE_SET:
{
return {
...state,
...action.data
};
}
default:
{
return state;
}
}
};
Directory Contents
Dirs: 0 × Files: 16