MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/actions/showStaticContent.js

Summary

Maintainability
A
0 mins
Test Coverage
export function shouldShowStaticContent(shouldShow) {
  return {
    type: 'SHOULD_SHOW_STATIC_CONTENT',
    shouldShow,
  };
}

export function toggleStaticContent(show = true) {
  return (dispatch) => {
    dispatch(shouldShowStaticContent(show));
  };
}