MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/actions/showSearchBar.js

Summary

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

export function toggleSearchBar(show = true) {
  return (dispatch) => {
    dispatch(shouldShowSearchBar(show));
  };
}