| 1 2 3 4 5 6 7 8 9 10 11 12 | 1x | import _ from 'lodash';
import * as DropMenu from '../DropMenu/DropMenu.reducers';
export function onSelect(state, selectedIndex) {
return _.assign({}, state, {
selectedIndex,
DropMenu: DropMenu.onSelect(state.DropMenu, selectedIndex),
});
}
export { DropMenu };
|