MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/reducers/showMobileFilter/showMobileFilter.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export default function shouldShowMobileFilter(state = false, action) {
  switch (action.type) {
    case 'SHOULD_SHOW_MOBILE_FILTER':
      return action.shouldShow;
    default:
      return state;
  }
}