MetaPhase-Consulting/State-TalentMAP

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

Summary

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