MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/actions/showMobileFilter.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export function shouldShowMobileFilter(shouldShow) {
  return {
    type: 'SHOULD_SHOW_MOBILE_FILTER',
    shouldShow,
  };
}

export function toggleMobileFilter(show = true) {
  return (dispatch) => {
    dispatch(shouldShowMobileFilter(show));
  };
}